ok here the url that is used to access the page via a previous page:
http://global-european.com/ICAO%20Lookup/editairport.php?icao=3A2
and the code
<?php
$icaocode = $_REQUEST['icao'];
include "config.php3";
$query = mysql_query("SELECT * FROM $table1 WHERE icao='$icaocode'");
while($row = mysql_fetch_array($query)or die (mysql_error()))
{
$apname = $row['AirportName'];
$apicao = $row['ICAO'];
echo $apicao;
echo $apname;
}
echo "hello world";
?>
the front end of this page is blank just pure white yes it is a php file and yes i do have php on my domain.
any ideas?