行が0行ある行を数えようとしていますが、SQLクエリに一致する行がない場合は、とにかく1行を返します。誰かが私が間違っていることを知っていますか?
$del = mysql_real_escape_string(strip_tags($_GET['del']));
if ($del)
{
$sql6 = "SELECT count(*) FROM oneliners WHERE id='$del' AND to_user='".$_SESSION['username']."'";
$result6 = mysql_query($sql6) or trigger_error(mysql_error()."".$sql6);
$num_rows6 = mysql_num_rows($result6);
echo $sql6;
echo '<br>';
echo $num_rows6;
//If no rows return, do this
if ($num_rows6 <= 0)
{
header("location:oneliner.php");
exit();
}