aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/PHP_Klasse1/1.3.11 File Funktionen/file_exists.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01:00

18 lines
292 B
PHP

<html>
<body alink="black" vlink="black" link="black">
<?php
$testfile = "testfile.html";
if(file_exists($testfile))
{
printf("$testfile existiert!");
}
else
{
printf("$testfile gibt es nicht");
}
?>
<br><br>
<a target="_blank" href="file_exists.txt">code dazu</a>
</body>
</html>