Reply
Write to text file code
Old 05-21-2008, 08:46 PM Write to text file code
Extreme Talker

Posts: 171
whats wrong with my code

PHP Code:
<?php
$time 
date('U');
$ip $_SERVER['REMOTE_ADDR'];

$yname $_POST['yname'];
$tname $_POST['tname'];
$yid $_POST['yid'];
$tid $_POST['tid'];
$twhy $_POST['twhy'];


$myFile 'nominate/$time.txt;
$fh = fopen($myFile, '
w') or die("can't open file");
$stringData = "
n $ip|$yname|$yid|$tname|$tid|$twhy|";
fwrite($fh, $stringData);
fclose($fh);

?>
simster is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 05-21-2008, 08:52 PM Re: Write to text file code
vn5ltr's Avatar
Skilled Talker

Posts: 95
Location: Melbourne, Australia
You forgot to close the apostrophe.

PHP Code:
<?php
$time 
date('U');
$ip $_SERVER['REMOTE_ADDR'];

$yname $_POST['yname'];
$tname $_POST['tname'];
$yid $_POST['yid'];
$tid $_POST['tid'];
$twhy $_POST['twhy'];


$myFile 'nominate/$time.txt';
$fh fopen($myFile'w') or die("can't open file");
$stringData "n $ip|$yname|$yid|$tname|$tid|$twhy|";
fwrite($fh$stringData);
fclose($fh);

?>
vn5ltr is offline
Reply With Quote
View Public Profile
 
Old 05-21-2008, 10:07 PM Re: Write to text file code
Extreme Talker

Posts: 171
thank you
simster is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Write to text file code
 

Thread Tools

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

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




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.10960 seconds with 13 queries