blob: de7afafb4892967c9d705196597084ac93703c9f [file] [log] [blame]
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php
echo '<p>Hello World</p>';
$myFile = "/home/data/users/aeisenberg/public_html/testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file. for real");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);
?>
</body>
</html>