Jump to content

Multi Numbers problem


Chevy

Recommended Posts

I tried

[code]if (($latitude==1||2||3||4||5) && ($longitude==1||2||3||4||5)){[/code]

No luck on 6,6 I still got the massage

[code]
$latitude = $row['latitude'];
$longitude = $row['longitude'];
$totalfish = $row['totalfish'];

if ($process == play){

if (isset($_POST["right"])) {$latitude++; mysql_query("UPDATE table SET latitude='$latitude' WHERE username='$MySN'")
or die(mysql_error());}
if (isset($_POST["left"])) {$latitude--; mysql_query("UPDATE table SET latitude='$latitude' WHERE username='$MySN'")
or die(mysql_error());}
if (isset($_POST["up"])) {$longitude++; mysql_query("UPDATE table SET longitude='$longitude' WHERE username='$MySN'")
or die(mysql_error());}
if (isset($_POST["down"])) {$longitude--; mysql_query("UPDATE table SET longitude='$longitude' WHERE username='$MySN'")
or die(mysql_error());}

if ($latitude==1||2||3||4||5 AND $longitude==1||2||3||4||5){
        echo "Testing this cordnate!";
}

[/code]
Link to comment
https://forums.phpfreaks.com/topic/14962-multi-numbers-problem/#findComment-60095
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.