Current location: Hot Scripts Forums » Programming Languages » PHP » PHP write to file


PHP write to file

Reply
  #1 (permalink)  
Old 11-08-03, 10:18 PM
jvfnd jvfnd is offline
New Member
 
Join Date: Nov 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
PHP write to file

I'm just started to learn PHP..
can anyone help me with writing something to a file eg. 'Hello World' to data.txt.
Thanks
Reply With Quote
  #2 (permalink)  
Old 11-09-03, 05:34 AM
alfreds's Avatar
alfreds alfreds is offline
Newbie Coder
 
Join Date: Jun 2003
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jvfnd
I'm just started to learn PHP..
can anyone help me with writing something to a file eg. 'Hello World' to data.txt.
Thanks
PHP Code:

<?

// Get the document root
$doc_root $HTTP_SERVER_VARS['DOCUMENT_ROOT'];

// Set file for opening
$fp fopen("$doc_root/data.txt"'w');

// Check if can write to file
if (!$fp)  {
       print 
'Could not open desired file for writting';
}

// Set what will be written to file
$outputstring "Hello World";

// Finally, write to file
fwrite($fp$outputstring);

// Close the written file
fclose($fp);

?>
I suggest you to read the php manual about file handling:
http://lv.php.net/manual/en/function.fopen.php

Kaspars
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP code to edit a text file mdhall Script Requests 12 12-23-10 04:03 AM
Problem with Read from file by PHP Pothik Script Requests 5 09-15-03 08:42 AM
PHP - Dir listing and write to file NickyWhicko PHP 4 08-24-03 02:42 AM
One PHP file to edit another.... drgn91 PHP 10 07-22-03 11:29 AM
PHP and TXT file Vyrus PHP 10 07-13-03 11:05 AM


All times are GMT -5. The time now is 05:41 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.