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
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
Share on other sites

A bit inificient. Try...

[code=php:0]
function check_id($id) {
    $sql = "SELECT id FROM $this->table WHERE id=$id";
    if ($result = mysql_query($sql)) {
        if (mysql_num_rows($result)) {
            return true;
        }
    }
    return false;
}
[/code]
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.