Jump to content

values of mysql query into an array...


mkosmosports

Recommended Posts

Hey everyone,

What I want to do is retrieve one column from a mysql table, insert it into an array, and then put a condition saying that if the url parameter containing that column value is not in the array, to go to an error page.

What I have now is:

$team=$_GET["team"];

$getallteam = @mysql_query("SELECT ID FROM sf_team");

if (!$getallteam)
{
    echo("<p>Error performing query: " . mysql_error() . "</p>");
exit();
}

while($row = mysql_fetch_array($getallteam))
{
$teamid = $row["ID"];

After that, Im not sure what to do. Can anyone help me?

Thanks.
Link to comment
Share on other sites

try this:

[code=php:0]
  $team=$_GET["team"];

  $getallteam = @mysql_query("SELECT ID FROM sf_team");

  if (!$getallteam)
  {
      echo("<p>Error performing query: " . mysql_error() . "</p>");
      exit();
  }

  while($row = mysql_fetch_array($getallteam)){
  $teamid[] = $row['ID'];
}

if(!in_array($team, $teamid)){
echo "ID is not in array!";
}else{
echo "ID is in array!";
}
[/code]

but if your just using it to check if an ID exists there are easier ways...
Link to comment
Share on other sites

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.