$sayfa_adi="sayfa.txt";

if (file_exists($sayfa_adi))
{
echo "Sayfa zaten var!";
}
else

{
touch($sayfa_adi);
echo "Sayfa oluşturuldu.";
}

?>