Jump to content

Recommended Posts

<?php ...
$newx = $row['player_loc_x']-1;
$y = $row['player_loc_y'];
$border = mysql_query("SELECT * FROM zones WHERE zone_id = '1' AND zone_b_x = '$newx'");
$row2 = mysql_fetch_array($border);
$zoneby = $row2['zone_b_y'];

if ( $newx == $zonebx && $y == $zoneby) { "do this" } else { "do this instead" };
...
?>

 

 

This only seems to return 1 value that is in my database. when i Echo $zoneby. I need it to hold all info that is relevant for validation in my if statement. Any ideas? I'm sure its something easy that I'm over looking.

 

Here is an example of what I'm trying to do.

 

1. Retrieve all the data related to zone_b_x and zone_id

2. In this case its 5, 8, 10 But when I echo it, it only holds the value of 5 and doesn't look at 8 or 10 for the statement.

 

Link to comment
https://forums.phpfreaks.com/topic/181637-solved-queries-with-php/
Share on other sites

<?php ...
$newx = $row['player_loc_x']-1;
$y = $row['player_loc_y'];
$border = mysql_query("SELECT * FROM zones WHERE zone_id = '1' AND zone_b_x = '$newx'");
$row2 = mysql_fetch_array($border);
$zoneby = $row2['zone_b_y'];

if ( $newx == $zonebx && $y == $zoneby) { "do this" } else { "do this instead" };
...
?>

 

 

This only seems to return 1 value that is in my database. when i Echo $zoneby. I need it to hold all info that is relevant for validation in my if statement. Any ideas? I'm sure its something easy that I'm over looking.

 

Here is an example of what I'm trying to do.

 

1. Retrieve all the data related to zone_b_x and zone_id

2. In this case its 5, 8, 10 But when I echo it, it only holds the value of 5 and doesn't look at 8 or 10 for the statement.

 

What columns are in zones?

 

$row2['zone_b_y'] will be what is in the cell matching:

- the first row where zone_id is 1 and zone_b_x is $newx

- the column zone_b_y

in the table zones :

 

zone_id

zone_b_x

zone_b_y

 

everything in zone_id right now is set to 1 since I am just trying to get this to function

 

in zone_b_x i have numerous values, but just want to compare it to the current $newx

 

so, if i have data such as this:

id, x, y

1, 5, 5

1, 5, 8

1, 5, 10

1, 6, 5

1, 9, 4

etc.

 

I want it to look at zone_id 1, zone_b_x 5 and zone_b_y hold the values of 5 8 and 10 so i can compare them in the if statement.

so an example row would look like this?

 

+---------+----------+----------+
| zone_id | zone_b_x | zone_b_y |
+---------+----------+----------+
|   1     |    5     |    5     |
+---------+----------+----------+

 

that's the only row you will get if you just do what you have, which means that ['zone_b_y'] will be 5

 

you can look through it though, which will get each row in order, like this:

 

while($row2 = mysql_fetch_array($border)){
   echo $row2['zone_b_y'] ."<br />";
}

 

which would output:

 

5

8

10

 

(each time you call mysql_fetch_array($border), it will get the next row that matches up)

 

you can probably figure it out from here with what you want to do

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.