FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » newbie question
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
newbie question [message #170957] Sun, 12 December 2010 02:06 Go to previous message
justaguy is currently offline  justaguy
Messages: 16
Registered: December 2010
Karma:
Junior Member
Hi,

This is my very first php script and I'm already in trouble. I'd like
it to do two things:
a) append the email address to the Log.txt file on the server at the
same location;
b) redirect to newlocation.html page

The redirection is ok but the email capture failed. It seems that the
logMessage isn't called. How can we fix it? Thanks.

<?php
$email = $_POST['email'];
// $email = $HTTP_POST_VARS['email'];
echo "$email <br />";

function logMessage($email)
// debug
echo "email recording function called.";
{
$myFile = "Log.txt";
$contentsOld = file_get_contents($myFile, true);
$fh = fopen($myFile, 'w') or die("couldnt locate log file");

$stringData = date("l F j, Y, g:i:s a") . "\nEmail: " . $email . "\n
\n";
fwrite($fh, $contentsOld);
fwrite($fh, $stringData);
fclose($fh);
}

// debug
// echo "email has been processed.";

header( 'Location: http://www.mysite.com/newlocation.html' ) ;
?>
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Use of Includes
Next Topic: Stats comp.lang.php (last 7 days)
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 27 13:23:39 GMT 2024

Total time taken to generate the page: 0.06344 seconds