I am using MYSQLi (from this website: http://codular.com/php-mysqli) and getting a blank page.
<html>
<body>
<h1>TEST21</h1>
<?php
error_reporting(E_ALL); ini_set('display_errors', 1);
$db = new mysqli('localhost', 'Brendan', 'password', 'Library');
if($db->connect_errno > 0){
die('Unable to connect to database [' . $db->connect_error . ']');
}
echo "STEP1";
//STEP 2
$sql = <<<SQL
SELECT *
FROM 'BOOK'
WHERE 'ISBN10' > 0
SQL;
if(!$result = $db->query($sql)){
die('There was an error running the query [' . $db->error . ']');
}
echo "STEP2";
?>
</body>