m8t Posted September 19, 2009 Report Share Posted September 19, 2009 Tātad, esmu izveidjois spēles pašu pamata sistemu, bet saskāros ar kārtējo problēmu.. Problēma: iekš internet explorer: nav problēmas iekš firefox: cilvēciņš maina koordinātes datubāzē, bet kad tiek redirectots atpakaļ uz game.php, stāv tajā pašā vietā, ar tām pašām koordinātām. Demo: http://shizo0.exs.lv/game/game.php Kā lai šo salabo, tā lai varētu pilnvērtīgi "staigāt", arī iekš firefox? Quote Link to comment Share on other sites More sharing options...
waplet Posted September 19, 2009 Report Share Posted September 19, 2009 ar kurām tām pašām koordinātēm? ar tām kurām pabeidza vai ar tām kurām sāka? Quote Link to comment Share on other sites More sharing options...
m8t Posted September 19, 2009 Author Report Share Posted September 19, 2009 Daļēji sapratu jautājumu, bet ja pareizi sapratu, tad atbilde ir - ar tām, kurām sāka. Piemērs: Pirms klikšķa Stāvam uz: 12x,10y Datubāzē tas uzrādās, kā: 12x, 10y Pēc klikšķa Stāvam uz: 12x,10y Datubāzē tas uzrādās, kā: 9x,14y (piemēra koordinātes) Quote Link to comment Share on other sites More sharing options...
waplet Posted September 19, 2009 Report Share Posted September 19, 2009 Un kas notiek pēc klikšķa, pēc refreša , tavā gadījumā? Quote Link to comment Share on other sites More sharing options...
m8t Posted September 19, 2009 Author Report Share Posted September 19, 2009 Pēc klikšķa: aizmet uz šo lapu, pievieno sql datubāzei jaunās koordinātas un met atpakaļ uz spēles lapu (game.php). <? $absx = $_GET["absx"]; $absy = $_GET["absy"]; include("sqlconnection.php"); if(is_numeric($absx) && is_numeric($absy)) { mysql_query("UPDATE {$tblprefix}users SET absx='{$absx}', absy='{$absy}' WHERE id='{$userid}'") or die(mysql_error()); //updatojam atrašanās vietu if(mysql_affected_rows() > 0) { header( 'Location: game.php' ); //echo "<meta HTTP-EQUIV=\"REFRESH\" content=\"0; url=game.php\">"; } else { echo "You are already at this location."; } } } ?> Quote Link to comment Share on other sites More sharing options...
waplet Posted September 19, 2009 Report Share Posted September 19, 2009 Vai šitā ir jābūt vai nē? http://www.failiem.lv/list.php?i=pwpenc Quote Link to comment Share on other sites More sharing options...
m8t Posted September 19, 2009 Author Report Share Posted September 19, 2009 (edited) Hmm.. laikam būs kļūme nevis skriptā, bet gan manā datorā. Paldies! ps. - "Kas tā par spēli?" :D Edited September 19, 2009 by m8t Quote Link to comment Share on other sites More sharing options...
waplet Posted September 19, 2009 Report Share Posted September 19, 2009 (edited) To brālis teica ::DD P.s. nedomājiet ka es beigās ar sevi runāju Edited September 19, 2009 by waplet Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.