Search found 14 matches
- Thu Feb 28, 2013 6:09 pm
- Forum: Older Browser MMO Videos
- Topic: i need help with my store.php
- Replies: -1
- Views: 2383
Re: i need help with my store.php
callan my login scipt doesnt have a session-start(), does it need to have it?
- Tue Feb 26, 2013 3:25 am
- Forum: Older Browser MMO Videos
- Topic: i need help with my store.php
- Replies: -1
- Views: 2383
Re: i need help with my store.php
overras the code you gave me doesnt seem to work it does the samething
- Tue Feb 26, 2013 3:22 am
- Forum: Older Browser MMO Videos
- Topic: i need help with my store.php
- Replies: -1
- Views: 2383
Re: i need help with my store.php
no its not a login its a logo
- Thu Feb 21, 2013 8:27 pm
- Forum: Older Browser MMO Videos
- Topic: i need help with my store.php
- Replies: -1
- Views: 2383
i need help with my store.php
help me every time i go to my store an try to buy an item it tells me that in not login this is my store.php <?php include_once 'connect.php'; session_start(); include_once 'logo.php'; ?> <link href="style.css" rel="stylesheet" type="text/css" /> <?php if (isset($_SESSI...
- Tue Jan 03, 2012 5:31 pm
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
Re: need help with battle.php
okay now every thing works just fine Thank you all for all of your help and sorry for all of the trouble 

- Tue Jan 03, 2012 6:53 am
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
Re: need help with battle.php
[VimeoSig][/VimeoSig]okay so now that ive fix every thing u guys told me to fix i get this message: ( ! ) Parse error: syntax error, unexpected $end in C:\wamp\www\tutorial\attack.php on line 97 im guessing that this maybe the last error i may have but im not sure <?php include_once 'connect.php'; s...
- Tue Jan 03, 2012 2:31 am
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
Re: need help with battle.php
umm i have another error saying: ( ! ) Fatal error: Can't use function return value in write context in C:\wamp\www\tutorial\attack.php on line 42 <?php include_once 'connect.php'; session_start(); if (isset($_SESSION['player'])) { $player=$_SESSION['player']; } $playerinfo="select * from playe...
- Mon Jan 02, 2012 6:12 pm
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
Re: need help with battle.php
okay well this is my Attack.php <?php include_once 'connect.php'; session_start(); if (isset($_SESSION['player'])) { $player=$_SESSION['player']; } $playerinfo="select * from players where name='$player'"; $playerinfo2=mysql_query($playerinfo) or die ("could not get player stats!"...
- Mon Jan 02, 2012 7:22 am
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
Re: need help with battle.php
okay thanks you for the help but now i have two other problems the first one is the every time i go to localhost/tutorial/battle.php i see this S <<<<<<<<<<<<<<<<< the creatures name is S Hit points = 5 Attack = 3 Defence = 3 the problem is the name i dont know where i whent wrong pls help Also ever...
- Mon Jan 02, 2012 1:22 am
- Forum: Older Browser MMO Videos
- Topic: need help with battle.php
- Replies: -1
- Views: 3242
need help with battle.php
I need help with my battle.php every time i go to localhost/tutorial/battle.php IT says could not select player status! this is my battle.php <?php include_once 'connect.php'; session_start(); if (isset($_SESSION['player'])) { $player=$_SESSION['player']; } else { echo "Not Logged in <br><br> <...