Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
$fh = fopen ('c:\php\foo.txt', 'w') or die ("Could not open output file");
fputs ($fh, 'This is a test');
fclose ($fh);
?>
<?php
$hour = date ('G');
$minute = date ('i');
$minute += 2;
$exec_string = 'at ' . $hour . ':' . $minute . ' c:\php\php.exe c:\php\processor.php';
$foo = exec($exec_string);
print $exec_string;
print $foo;
?>