Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

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

Posts: 189
Trades: 0
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
 
 
Register now for full access!
Old 05-21-2008, 09:52 PM Re: Write to text file code
vn5ltr's Avatar
Skilled Talker

Posts: 93
Location: Melbourne, Australia
Trades: 0
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, 11:07 PM Re: Write to text file code
Extreme Talker

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

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 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.13874 seconds with 12 queries