I am trying to open a document in a new page. The code is very simple:
<?php
$fo = fopen("index.txt", "r");
fclose($fo);
?>
All I get is a blank screen.
Index.txt is in the same folder of the script and Allow_URL in the php.ini is set to on.
Am I not using it correctly?
thx
<?php
$fo = fopen("index.txt", "r");
fclose($fo);
?>
All I get is a blank screen.
Index.txt is in the same folder of the script and Allow_URL in the php.ini is set to on.
Am I not using it correctly?
thx