My code do one self submitting to bring the list of streets from a previous choosen city in the same form, before the user fill all the fields in the form and submit to the final script...
Is it possible to display a loading bar or a simple message like "Wait we are retrieving results" while the page with the streets are being transmited? and show the page with the form after the streets are able to be displayed?
something like :
if ( !$results_from database ) {
header("Location: waitingpage.php");
} else {
header("Location: $page_with_results_from _database");
}
Cheers