Asağidaki Kodları Yazdım Ama Hata Olusuyor.
<?
function uyari (){
print '
<script language="JavaScript">
alert("Form Eksik")
</script>';
}
?>
<html>
<head><title>deneme</title>
<meta http-equiv="Content-Type" content"text/html;
charset=iso=8859-">
<head>
<body>
if( empty($ad) {
if($HTTP_GET_VARS):
if(empty($ad){
uyari();
}
endif ;
?>
<form action="denemem.php" method="post">
<input type="text" name="ad"><br>
<input type="submit" value="bul">
</form>
<?
}else{
foreach( $HTTP_GET_VARS as $anahtar=>$deger){
print "$anahtar = <b>$deger</b><br>\n";
}
}
?>
</body>
</html>