Jump to content

checking an id


firelior

Recommended Posts

Hi,
I got a problem, I want to check the id that im sending via $_GET
and I want to check if it exist
this is my code:
[code] function check_id($id){
$sql="select * from ".$this->table." where id= ".$id;
if(mysql_query($sql,$this->link)){
if($row=mysql_num_rows($sql)==1){
return true;
}
return false;
}
return false;
}[/code]
please help thanks
Link to comment
https://forums.phpfreaks.com/topic/21631-checking-an-id/
Share on other sites

never mind fixed the problem..here is the fixed:
[code] function check_id($id){
$sql="select * from ".$this->table." where id= ".$id;
$result=mysql_query($sql);
while($row=mysql_fetch_object($result)){
if($row->id==$id){
return true;
}
return false;
}
return false;
}[/code]
Link to comment
https://forums.phpfreaks.com/topic/21631-checking-an-id/#findComment-96538
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.