Jump to content

Beginner Help please


prg1

Recommended Posts

Hi all messing about with php , trying to get my head round the basics :

 

ok I have a file called test.php

 

with this in it

 

<?

$ourFileName = "testFile.txt";

$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");

fclose($ourFileHandle);

?>

 

when I run this instead of creating a blank text file called testfile.txt

 

all it does is repeat the code in the command box window as below

 

C:\php>php -f c:\php\test\test.php

<?

$ourFileName = "testFile.txt";

$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");

fclose($ourFileHandle);

?>

C:\php>

 

Anyone got a clue as to why it wouldnt create a text file please?

 

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/211974-beginner-help-please/
Share on other sites

 

<?

$ourFileName = "testFile.txt";

$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");

fclose($ourFileHandle);

?>

 

 

Maybe also try to start your php with <?php and end with ?>  <? as opening tag is considered a bad thing ; )

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.