What do you mean by:
2) It does bring back everything from the table
As for bringing it back in a table, use this:
<?php
//do your query
$result = mysql_query("SELECT * FROM bookings WHERE bookingID='".$last_insert_booking_id."'");
//because your query uses a primary key, we only have one result and so don't have to use the while function. instead, save all the query results into an array.
$result_array = mysql_fetch_array($result);
//setup your table
echo '<table>';
//for each piece of information saved in the array, display it to the user.
foreach($result_array as $key => $value)
{
if( !is_int($key) )
{
echo '<tr><td>';
echo $key;
echo '</td><td>';
echo $value;
echo '</td></tr>';
}
}
//cloes your table
echo '</table>';