Jump to content
xisto Community

lysvir

Members
  • Content Count

    12
  • Joined

  • Last visited

Everything posted by lysvir

  1. Ok, so I currently got a website were the users are allowed to view each others profiles (Feelays system).But im making a new feature where the members gets credits for various things they do.But I want to make a script that the members can use to transfer credits between each others.Only problem is, I have no clue how to do it?Could be something like this:Welcome -USERNAME-.Transfer credits to [------] /form box/[send] /button/
  2. I played both MapleStory and Runescape some years ago. I think Runescape is more fun than MapleStory, but MS has better grapichs. And now with the new design and "rules / traderules" at RuneScape, non of them are good . RuneScape was much fun some years ago. But now.. Nah, I don't play it and I don't like it any more. Sadly, because it used to be my favorite game.
  3. I know that this forum is called "Online Multiplayer RPG Games", and that most people do not associate the GTA games with RPG games. Though, in the last year iv been playing the modification of San Andreas, called San Andreas Multiplayer. What is it?: As long as you got San Andreas (standalone, not via Steam or anything like that), you can download and play SA-MP. There's a lot of GMs (game modes), such as RPG, deathmatch, Cops And Robbers etc. The RPG GMs is the most fun. You pretend you are a person living a life in the San Andreas (Los Santos, Las Venturas or San Fierro). You can often choose between being an cop/fbi, lawyer, boxer, car jacker, gun dealer, leader of a family / mafia ++. Requirements?: http://wiki.sa-mp.com/wiki/Introduction Give me the website!: Here you go: http://www.sa-mp.com/
  4. I can see that none has posted here for a month, but I want to say my meaning here;I was playing the Norwegian version of Habbo only two months after the release. It was a great, small community with people, and we had lots of fun. Though, the game became more popular, and new players started to come. It destroyed the whole community. Many of the great, old and active users stopped playing because it wasn't fun. Now it was all about having most furniture, coins and gangs/friends. The game destroyed itself.
  5. Does any of these support burning VOB and IFO files?My friend gave me his external HDD so I could backup his stuff. But I want to copy some movies on to DVD, but its VOB and IFO. Most Google searches are useless as the programs just crashes.
  6. I managed to figure it out by my self ^^,! This is the code to the profile page: <?php echo '<td><a href="member_profile.php?username=' . $_SESSION['username'] . '"> Your ingame stats/profile</td>'; ?>
  7. Hi again Feelay. I'm working on a website that should contain text like this when logged in: Welcome [username]. But my problem is, how can I make the user see their own profile page just by clicking their username here? I tried this solution (which didn't work): at the start: <?phpsession_start();require_once 'db.php';if (isset($_SESSION['username'])){$user = $_SESSION['username'];?> Where I wanted the "Welcome [username]" without the "welcome" part: <h4>Logged in</h4><fieldset><a href = "<?php echo "member_profile.php?username=$user"; ?>"><?php echo $user; ?></a><a href="logout.php">Log out</a></fieldset> Do you know any working solution for my problem ? Thanks.
  8. Thanks! Now everything works perfect. Can I just ask one more question? Is it hard to make a script within this one, that let's the users upload a profile picture to the database? I'm currently running everything on localhost with a phpmyadmin system. I'm thinking something like a profile page that will show: [PROFILE PICTURE]- [PROFILE NAME] That this will be shown to the user visiting the profile? localhost/member_profile.php?username=Test This will then show the username: TEST and the profile picture that TEST has uploaded. Is this hard to make?
  9. Now this is my member_profile.php page. Is there something wrong with it as it wont show the username ? The session name is username and the db file is db.php. <?phpsession_start();require 'db.php';$nuser=$_SESSION['username'];$auser=$_SESSION['admin'];if($nuser){$userfinal=$nuser;}elseif($auser){$userfinal=$auser;}if(isset($userfinal)){$username = $_GET['username'];$user = mysql_query("SELECT * FROM user WHERE username = '$username'");$user=mysql_fetch_assoc($user);if($user['level'] > 1){die("You cant view an Admins profile!");}echo "<h1>User Info</h1>";echo "<b>Username:".$user['username']."<br>";echo "<br>"; echo '<form name="backlistfrm" method="post" action="members.php">';echo '<input type="submit" value="Back to The List">';echo '</form>';echo "<br>";} else {echo "You are not logged in. Please log in to continue";}?>
  10. Hello!Thank you for the tutorials that you have made. It has helped me a lot with my website.Just one question about this one; I only get "Parse error: syntax error, unexpected $end" in the members profile. It says line 35.Do you think you could help me out ? Would be really nice.+Theres no such table as user.characters in your login/registration script either. Whats supposed to be in that one?Thanks
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.