Hey i'm having some troubles with my query in mysql. This script should (i hope) check if my query is valid. However it all ways outputs false and i'm pretty sure my query is valid. Can someone help explain to me why.
<?php
require "connect.inc.php";
$query = "SELECT * FROM `users`";
$query_run = mysql_query($query);
if ($query_run){
echo "Correct";
} else{
echo "False";
}
?>