Fairly simple. Add the form data to the url, for example:
booking.php?field1=data1&field2=&data2
Then use the following code to 'GET' the relevant data from the url:
$data1 = $_GET['data1'];
$data2 = $_GET['data2'];
Then inside the form that gets displayed you need the following (assuming that it is straight coded and not echo'd from the php)
<form ... >
<INPUT type="text" id="field1" value="<? echo $data1; ?>" >
<INPUT type="text" id="field2" value="<? echo $data2; ?>" >
etc.....
</form>