<? function urlkontrolet ($adres) { $sonuc = ereg("^[a-zA-Z0-9]+://[^ ]+$", $adres); if ($sonuc) { $dogru = "doğrudur."; } else { $dogru = "yanlıştır."; } echo (" URL adresi : $adres $dogru <BR>"); } urlkontrolet ("www.hizhosting.com"); urlkontrolet ("http://www.hizhosting.com/"); urlkontrolet ("https://hizhosting.com"); ?>