I have tested out my procedure on my home machine. It woks pretty well
I know there is output from the sql.
Now I want to try it out on the host. It gives no output.
Here is my php code
$bob="call seeker($profound)";
if (mysqli_multi_query($conn,$bob))
{
echo "<hr>";
echo "<table><th>Section</th><th>Author</th><th>Title</th>";
do
{
if ($mysqli=more_results($conn))
{
$thepot=$row['scribe'];
$ego=$row['id'];
$volume=$row['title'];
$subject=$row['subject'];
$catinfo=<<<MEOW
<tr>
<td>$subject</td>
<td>$thepot</td>
<td><a href ="card.php?id=$ego">$volume</a></td>
</tr>
MEOW;
echo $catinfo;
$result->free();
}
}//if result
// }//do whle
while ($row=$result->fetch_row);
} //if statement if query
else
{echo "whiskey tango foxtrot";}
echo"</table>";
I would appreciate any assistance I can get here.