Warning: mysql_fetch_ass oc(): supplied argument is not a valid MySQL result resource in C:\wamp\www\blo g\blogpost.php on line 11
how can i fix thes error above this is my code
how can i fix thes error above this is my code
Code:
<?php
class BlogPost
{
public $id;
public $title;
public $post;
public $author;
if (!empty($inAuthorId))
{
$result = mysql_query("SELECT first_name, last_name FROM people WHERE id = " . $inAuthorId);
$row = mysql_fetch_assoc($result);
$this->author = $row["first_name"] . " " . $row["last_name"];
}
}
?>
Comment