Hello.
I am a new to this and I need help.
I use a simple php file for test.
Command to run: php /home/username/test.php
test.php:
<?php
$starttime = time();
$fp = fopen('time.inc', 'w+');
if($fp)
{
fwrite($fp, $starttime);
fclose($fp);
}
?>
why can't get any result?