Page 8 of 13

Re: Video#2

Posted: Sun Nov 15, 2009 6:54 pm
by ZeroComp
ok thanks got it fixed

Re: Video#2

Posted: Tue Dec 22, 2009 10:34 am
by eltish96
Dude, you're videos are immense! Really helpful!

I've come across a quite major problem though, and i was wondering if you or any other users can help me out?

When i go into my browser and go through localhost/tutorial/test.php, i get an error message, a 404 not found message saying that the page was not found on the server....I then type in localhost/tutorial/test.php.txt and the page comes up with the coding i've just written :cry:

Can anyone help me out here? I'm desperate :D

Thanks,
//Elliot :!: :!: :!:

Re: Video#2

Posted: Tue Dec 22, 2009 11:03 am
by OldRod
When you saved the file, it sounds like it got the *.txt extension added on. Rename the file "test.php" and it should work.

Re: Video#2

Posted: Tue Dec 22, 2009 1:20 pm
by eltish96
Thanks for you're help dude!

It worked :)

You're a proven legend :lol: :D ;)

Re: Video#2

Posted: Thu Dec 24, 2009 11:42 pm
by phq
Hi,
How can I find out how many tables down the player is? I might use this for my highscores.

Re: Video#2

Posted: Sat Dec 26, 2009 9:07 pm
by hallsofvallhalla
i am not sure what you mean. Tables down?

Re: Video#2

Posted: Sat Dec 26, 2009 10:59 pm
by Torniquet
i think he means rows.

to do a high score table is simple.

decide what you want to have the catagory as. (level, most gold etc)

then use a query similar to this...

Code: Select all

$sql = mysql_query("SELECT username, level FROM user_table ORDER BY level DESC LIMIT 10");

while($row = mysql_fetch_assoc($sql)){
  echo "user: " . $row['username'] . " level: " . $row['level'] . "<br />";
}
the order by is your catagory you want, ordered by decending (DESC) then your limt is how every many rows you want to submit. so this would display the top 10 levelers.

Re: Video#2

Posted: Sun Dec 27, 2009 4:43 am
by ZeroComp
oh so thats how you do one of those I've been trying to come up with my own code for ages :)

Re: Video#2

Posted: Tue Jan 26, 2010 8:59 pm
by goofkop
man, this tutorials are really great
i wanted to make a MMORPG
i have started it a long time ago but now i found this i can learn a lot from this guy

thanks man
this is top class
good clear explaining on the code
i know a bit of php so im already home in the wonders of php

again thanks

Re: Video#2

Posted: Thu Jan 28, 2010 2:38 pm
by hallsofvallhalla
awesome glad you like it and it is helping.