I have finally managed to get my code to return the first column from each one of two tables, but how do i change the code to return all the various column data from both tables and in order by an ID number. Here is my code
<?php
$mysqli = mysqli_connect("localhost", "name", "pass", "db");
// check connection
if (mysqli_connect_errno()) {
echo "Connect failed: " . mysqli_connect_errno(); exit();
}
$query = "SELECT * FROM custrec;"; "SELECT * FROM contidr;";
$result = array();
/* execute multi query */
if ($mysqli->multi_query($query))
{
do
{
//store first result set
if($result = $mysqli->store_result())
{
while( $rows = $result->fetch_row())
{
printf("<br/>%s<br/>", $rows[0]);
}
$result->free();
}
/* print divider */
if($mysqli->more_results())
{
printf("-----------------<br/>");
}
else
{
echo '<br/>';
}
} while($mysqli->more_results() && $mysqli->next_result());
}
/* close connection */
$mysqli->close();
?>