
phpnewbieca
Members-
Posts
71 -
Joined
-
Last visited
Everything posted by phpnewbieca
-
You're correct. I didn't notice METHOD="GET" I wonder if it worked????
-
I am trying to display the content of a text (txt) to the browser. It displays the bold item (title of the page). then it displays the Date Date Date Date. Please Help! function Guestbk_3() { // Display Guestbook Entries to Browser global $Date, $Pastor, $Webmaster, $Name, $Church, $City, $State, $Comments, $Alladdresses; $MyFile = "guestbook.txt"; $fh = fopen($MyFile,"r"); rewind($fh); if(!$fh) { die("couldn't open file <i>$MyFile</i>"); } else { $file = file_get_contents("$MyFile"); } fclose($fh); if(strstr($file,$Date)) { echo "<html>\n"; echo " <head>\n"; echo " <title>Guestbook Entries</title>\n"; echo " </head>\n"; echo " <body BGCOLOR=\"blue\" TEXT=\"white\">\n"; echo " <table align=\"center\">\n"; echo " <tr>\n"; echo " <td align=\"center\">\n"; [b] echo " <font size=\"+2\">~ ~ ~ GUESTBOOK ENTRIES ~ ~ ~</FONT>\n";[/b] echo " <br /><br />\n"; echo " </td>\n"; echo " </tr>\n"; echo " </table>\n"; echo " <table align=\"center\" width=\"600\">\n"; echo " <tr>\n"; echo " <td align=\"left\">\n"; [b] echo " $file\n";[/b] echo " </td>\n"; echo " </tr>\n"; echo " </table>\n"; echo " </body>\n"; echo " </html>"; } }
-
Thanks, I will try it.
-
The strings you used to get the information from the form may be the problem! <?php $Name = $_POST['Name']; $Name = $_POST['col']; $Name = $_POST['phone']; $fp = fopen("output.txt","a+") or exit("unable to open the file"); if($fp != null) { fwrite($fp,$Name); fwrite($fp,$col); fwrite($fp,$phone); } fclose($fp); Try this: <?php // Get Information From Form $Name = $_POST['Name']; $Col = $_POST['col']; $Phone = $_POST['phone']; $myfile = "output.txt" $fh = fopen($myfile,'a+'); if(!$fh) { die("couldn't open file <i>$myfile</i>"); } else { $str.= " $Name\r\n"; $str.= " $Col\r\n"; $str.= " $Phone\r\n"; fwrite($fh, $str); } fclose($fh); } GOOD LUCK!
-
you should see * 183 before 'email_message.=...'
-
function Appointment_1() is the function that puts the content of $file in an email function Appointment_2() still has problems sending the file as an attachment
-
I am receiving the following error: Parse error: syntax error, unexpected T_STRING in /home/xgasq39z/public_html/repair_upgrade.php on line 183 I have checked the code several times and I cannot find an error in the function below. function Repair_Upgrade_2() { // email customer global $Send_To, $Date, $confirmation_number, $Eighteen, $List, $List_2, $Dsn, $Title, $Fname, $Lname, $Address, $City, $City_2, $State, $Zip, $Email, $Phone, $Phone_2, $Computerbrand, $Computermodel, $Cd, $Cd_rw, $Cpu, $Dvd, $Dvd_rw, $Graphic_card, $Memory, $Modem, $Monitor, $Multimedia, $Network_card, $Printer, $Scanner, $Sound_card, $Speakers, $Comments; // EDIT THE LINE BELOW AS REQUIRED // $Send_To = "[email protected]"; // FUNCTION function died() { // your error code can go here echo "These errors appear below.\n"; echo "<br /><br />\n"; echo "$error_message\n"; echo "<br /><br />\n"; echo "Please go back and fix these errors.\n"; echo "<br /><br />\n"; die(); } $error_message = ""; $email_exp = "^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$"; if(!eregi($email_exp,$Email)) { $error_message.= 'The Email Address you entered does not appear to be valid.<br />'; } $string_exp = "^[a-z .'-]+$"; if(!eregi($string_exp,$Fname)) { $error_message.= 'The First Name you entered does not appear to be valid.<br />'; } if(!eregi($string_exp,$Lname)) { $error_message.= 'The Last Name you entered does not appear to be valid.<br />'; } if(strlen($Comments) < 2) { $error_message.= 'The Comments you entered do not appear to be valid.<br />'; } $string_exp = "^[0-9 .-]+$"; if(!eregi($string_exp,$Phone)) { $error_message.= 'The Daytime Phone Number you entered does not appear to be valid.<br />'; } if(!eregi($string_exp,$Phone_2)) { $error_message.= 'The Evening Phone Number you entered does not appear to be valid.<br />'; } if(strlen($error_message) > 0) { died($error_message); } //FUNCTION function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $subject = "RE: Repair-Upgrade Order\n\n"; $email_message = "Hello, $Title $Fname $Lname\n"; $email_message.= "Thank you for your order.\n"; $email_message.= "This is what you submitted:\n"; $email_message.= "Age Verification: $Eighteen\n"; $email_message.= "Type Order: $List\n"; $email_message.= "Type Service: $List_2\n"; $email_message.= "Title: $Title\n"; $email_message.= "First Name: ".clean_string($Fname)."\n"; $email_message.= "Last Name: ".clean_string($Lname)."\n"; $email_message.= "Address: $Address\n"; $email_message.= "City: $City\n"; $email_message.= "$City_2\n"; $email_message.= "State: $State\n"; $email_message.= "Zip Code: $Zip\n"; $email_message.= "Email Address: ".clean_string($Email)."\n"; $email_message.= "Daytime Telephone: ".clean_string($Phone)."\n"; * 183 $email_message.= "Evening Telephone: ".clean_string($Phone_2)."\n"; $email_message.= "Computer Brand: $Computerbrand\n"; $email_message.= "Computer Model: $Computermodel\n"; $email_message.= "Items to be repaired, replaced, or upgraded.\n"; $email_message.= "CD: $Cd \t\t\t\t CD RW: $Cd_rw \t\t\t\t CPU: $Cpu\n"; $email_message.= "DVD: $Dvd \t\t\t\t DVD RW: $Dvd_rw \t\t\t\t Graphic Card: $Graphic_card\n"; $email_message.= "Memory: $Memory \t\t\t\t Modem: $Modem \t\t\t\t Monitor: $Monitor\n"; $email_message.= "Multimedia: $Multimedia \t\t\t\t "Network Card: $Network_card \t\t\t\t Printer: $Printer\n"; $email_message.= "Scanner: $Scanner \t\t\t\t Sound Card: $Sound_card \t\t\t\t Speakers: $Speakers\n"; $email_message.= "Comments: ".clean_string($Comments)."\n\n"; $email_message.= "Please VALIDATE your ORDER by clicking the link below.\n"; $email_message.= "You will need your CONFIRMATION NUMBER $confirmation_number to validate your ORDER.\n\n"; $email_message.= "<a href=\"www.horace-franklin-jr.com/valid_repair_upgradeform.html\"> Validate Order</a>\n"; // create email headers $headers = "From: ".$Send_To."\r\n". "Reply-To: ".$Send_To."\r\n". "X-Mailer: PHP/". phpversion(); $formsent = mail($Email, $subject, $email_message, $headers); if ($formsent) { echo $formsent; } else { echo "email was not sent"; die; } } Please tell me what is wrong with this function.
-
The code below allows me to send the contents of a txt file via email using the mail() function :D <?php // Processess Forml $Date = date("D d M Y - H:i:s "); $confirmation_number = $_POST['confirmation_number']; $MyFile = "myfile.txt"; $from = "[email protected]"; // validation expected data exists if(!isset($_POST['confirmation_number'])) { died('We are sorry, but there appears to be a problem with the form your submitted.'); } // Call Function Appointment_1(); Appointment_2(); //FUNCTION function Appointment_1() { global $Date, $confirmation_number, $from, $MyFile; $fh = fopen($MyFile,"r"); rewind($fh); if(!$fh) { die("couldn't open file <i>$MyFile</i>"); } else { $file = file_get_contents("$MyFile"); } fclose($fh); if(strstr($file,$confirmation_number)) { $subject = "Valid - Appointment Request"; $email_message = "Appointment Request has been validated.\n"; $email_message.= "Contact requestor within 48 hours.\n"; $email_message.= "Confirmation Number: $confirmation_number\n"; $email_message.= " $file"; // create email headers $headers = 'From: '.$from."\r\n". 'Reply-To: '.$from."\r\n" . 'X-Mailer: PHP/' . phpversion(); $formsent = mail($from, $subject, $email_message, $headers); if ($formsent) { echo $formsent; } else { echo "email was not sent. The CONFIRMATION NUMBER you enter is not in or records."; die; } } } function Appointment_2() { $Send_to = '[email protected]'; $From = '[email protected]'; $Subject = 'Valid - Appointment Request'; //supply the text and html versions of your email message $text = ''; $html = ''; //provide path to the file to be attached $file = '/home/xgasq39z/public_html/appointment.txt'; //create a boundary string. It must be unique //so we use the MD5 algorithm to generate a random hash $random_hash = md5(date('r',time())); //define the headers we want passed. Note that they are separated with \r\n $headers = "From: " ."<"."$From".">"."\n"; $headers.= "Reply-To: "."<"."$From".">"; //add boundary string and mime type specification $headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-{$random_hash}\""; //read the atachment file contents into a string, //encode it with MIME base64, //and split it into smaller chunks $attachment = chunk_split(base64_encode(file_get_contents($file) )); //define the body of the message. $body = "--PHP-mixed-{$random_hash}\r\n" . "Content-Type: multipart/alternative; boundary=\"PHP-alt-{$random_hash}\"\r\n" . "--PHP-alt-{$random_hash}\r\n" . "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n" . "Content-Transfer-Encoding: 7bit\r\n\r\n" . "{$text}\r\n\r\n" . "--PHP-alt-{$random_hash}\r\n\r\n" . "Content-Type: text/html; charset=\"iso-8859-1\"\r\n" . "Content-Transfer-Encoding: 7bit\r\n\r\n" . "{$html}\r\n\r\n" . "--PHP-alt-{$random_hash}--\r\n\r\n" . "--PHP-mixed-{$random_hash}\r\n" . "Content-Type: " . mime_content_type($file) . "; name=\"" . basename($file) . "\"\r\n" . "Content-Transfer-Encoding: base64\r\n" . "Content-Disposition: attachment\r\n\r\n" . "{$attachment}\r\n" . "--PHP-mixed-{$random_hash}--\r\n\r\n"; //send the email $mail_sent = @mail($Send_To, $Subject, $body, $headers ); echo " $mail_sent"; if ($mail_sent){ echo "Mail sent"; } } ?> Thank you!
-
What if I do this: $file = file_get_content($MyFile); email_message.= "$file";
-
Where would I put this code (I am a newbie to php)? Will this line of code load the file as a string? $lines = file(myfile.txt); If yes Would it print the contents of the string by using this line of code? $email_message.= " $lines";
-
I am trying to send the contents of an array $lines_array via email. I receive the following error message: Parse error: syntax error, unexpected '=' in /home/xgasq39z/public_html/valid_contact.php on line 29 I cannot find an error on line 29. So, I am assuming the error is on line 30. I cannot determine what I am doing wrong. Help, Please! <?php $Date = date("D d M Y - H:i:s "); $confirmation_number = $_POST['confirmation_number']; $from = "[email protected]"; // validation expected data exists if(!isset($_POST['confirmation_number'])) { died('We are sorry, but there appears to be a problem with the form your submitted.'); } // Call Function Send_Contact(); //FUNCTION function Send_Contact() { global $Date, $confirmation_number, $from; $MyFile = "data.txt"; $fh = fopen($MyFile,"r"); rewind($fh); if(!$fh) { die("couldn't open file <i>$MyFile</i>"); } else { while(!feof($MyFile)) { $lines_array = file($MyFile); } fclose($fh); if(in_array("Confirmation Number: $confirmation_number",$lines_array,true)){ $subject = " Valid - Contact Us"; $email_message = " Contact Information has been validated.\n"; $email_message.= " Contact requestor within 48 hours.\n"; [b]*** 29 [/b] $email_message.= " Confirmation Number: $confirmation_number\n"; [b]*** 30 [/b] $email_message.= " $lines_array"; // create email headers $headers = 'From: '.$from."\r\n". 'Reply-To: '.$from."\r\n" . 'X-Mailer: PHP/' . phpversion(); $formsent = mail($from, $subject, $email_message, $headers); if ($formsent) { echo $formsent; } else { echo " "email was not sent. The CONFIRMATION NUMBER you enter is not in or records."; die; } } } ?> [/Code]
-
I have 2 questions: First I need to know how to read a file into an array. Second, I need to know how to search a file for a number (8 digit). Why? Good question, I am storing the content of a form in a text file. The form has an 8 digit confirmation number. If I can search a file for that number I can find the information quickly and write it to an email. Any ideas? function send_order() { $myFile = "something .txt"; $fh = fopen($myFile,"r") or die("can't open <i>$myFile</i>"); if(!$fh) { die("couldn't open file <i>$myFile</i>"); } else { while(!feof($MyFile)) { $lines = file('$myFile'); } [b][u] if( $confirmation_number == $confirmation_number){[/u][/b] global $email, $confirmation_number, $from; $send_to = "$from"; $subject ="Valid - Contact Us"; $email_message = " Contact Information has been validated.\n"; $email_message = " Contact requestor within 48 hours.\n"; $email_message. = " $lines [0]\n"; $email_message. = " $lines [1]\n"; $email_message. = " $lines [2]\n"; $email_message. = " $lines [3]\n"; $email_message. = " $lines [4]\n"; $email_message. = " $lines [5]\n"; // create email headers $headers = 'From: '.$from."\r\n". 'Reply-To: '.$from."\r\n" . 'X-Mailer: PHP/' . phpversion(); $formsent = mail($send_to, $subject, $email_message, $headers); if ($formsent) { echo $formsent; } } }
-
DavidAM I put the error codes you recommend at the top of my script: Line 3: error_reporting(E_ALL); Line 4: ini_set("display_errors", 1); This it the error message I received: Notice: Use of undefined constant 1 - assumed ' 1' in /home/xgasq39z/public_html/contact.php on line 4 Do you know why I am receiving this Notice? MrAdam The reason fopen() was not writing the file was I had some other errors I had to correct. After I corrected the errors fopen($myFile, "a+") worked. rewind($fh) worked for me. It rewind the file to the top. The appended information was added to the top of the file. I do have another question. The line of code echo " success writing to file"; produces the following in my browser (Firefox) "success writing to file1." Where does the '1' come from?
-
I will place the error reporting at the beginning of my script. I am confused, I thought fopen(myFile,"a+") created/opened for appending the information to it. therefore the information written to the file by fwrite($fh,$str) would be appended to the file. If this is not correct, how do I append/add information to a existing file?
-
fopen(contact_us.txt"a+") is not creating the file contact_us.txt. The 'a+' should create a file if it doesn't exist and append the information in $str to the beginning of the file 'rewhind($fh)'. What am I doing wrong? function Order(){ global $Date, $confirmation_number, $send_to, $first_name, $last_name, $suffix, $email, $telephone, $comments; $myFile = "contact_us.txt"; $fh = fopen($myFile,'a+') or die("can't open <i>$myFile</i>"); if(!$fh) { die("couldn't open file <i>$myFile</i>"); } else { rewind($fh); $str.= " Date: $Date\r\n"; $str.= " Confirmation Number: $confirmation_number\r\n"; $str.= " To: $send_to\r\n"; $str.= " First Name: $first_name\r\n"; $str.= " Last Name: $last_name\r\n"; $str.= " Suffix: $suffix\r\n"; $str.= " Email Address: $email\r\n"; $str.= " Telephone: $telephone\r\n"; $str.= " Comments: $comments\r\n"; fwrite($fh, $str); echo "success writing to file"; } fclose($fh); } [/Code]
-
[SOLVED] Parse Error Unexpected '}' expecting ')'
phpnewbieca replied to phpnewbieca's topic in PHP Coding Help
opps! Maq not Mag -
[SOLVED] Parse Error Unexpected '}' expecting ')'
phpnewbieca replied to phpnewbieca's topic in PHP Coding Help
Mag, Hmmmm. Code tags, good idea. I posted the entire code because i'm a newbie to php coding and i didn't know what i should post . your input was helpful . -
[SOLVED] Parse Error Unexpected '}' expecting ')'
phpnewbieca replied to phpnewbieca's topic in PHP Coding Help
You're right. I guess I need to pay more attention to details. Thank you! -
I am a newbie and I do not understand why I keep receiving this error: Parse error: syntax error, unexpected '{', expecting '(' in contact_3.php on line 96 I have checked all the { and ) to see if i opened a { or ( without closing it to no avail. Please tell me what I am doing wrong. The line the error is referring to is in the function Order(), see *** below. <?php // contact_3.php - processes contactform.html $Date = date("D d M Y - H:i:s "); if(isset($_POST['email'])) { // Create Random Number srand ((double) microtime( )*1000000); $random_number = rand( ); $random_number = "confirmation_number"; $send_to = $_POST['send_to']; $first_name = $_POST['first_name']; $last_name = $_POST['last_name']; $suffix = $_POST['suffix']; $email = $_POST['email']; $telephone = $_POST['telephone']; $comments = $_POST['comments']; } // Call Functions Order(); Contact(); Verify_email_address(); //FUNCTIONS function Contact(){ // Print to Browser global $Date, $confirmation_number, $send_to, $first_name, $last_name, $suffix, $email, $telephone, $comments; echo " <html>\n"; echo " <head>\n"; echo " <title>Contact Us</title>\n"; echo " </head>\n"; echo " <body bgcolor=\"black\" TEXT=\"silver\">\n"; echo " <table width=\"600\" Align=\"center\">\n"; echo " <tr>\n"; echo " <td width=\"600\" Align=\"center\">\n"; echo " <font size=\"+2\">~ ~ ~ CONTACT US ~ ~ ~</font>\n"; echo " </td>\n"; echo " </tr>\n"; echo " </table>\n"; echo " <table width=\"600\" Align=\"center\">\n"; echo " <tr>\n"; echo " <td width=\"600\" Align=\"left\">\n"; echo " Date: $Date\n"; echo " <br />\n"; echo " Hello $first_name $last_name $suffix,\n"; echo " <br />\n"; echo " Thank you for contacting us. Someone will contact you, usually, within 24 hours.\n"; echo " <br /><br />\n"; echo " What you submitted is below:\n"; echo " <br />\n"; echo " <font size=\"+2\"> To: $send_to\n"; echo " <br />\n"; echo " First Name: $first_name\n"; echo " <br />\n"; echo " Last Name: $last_name\n"; echo " <br />\n"; echo " Suffix: $suffix\n"; echo " <br />\n"; echo " Email: $email\n"; echo " <br />\n"; echo " Telephone: $telephone\n"; echo " <br />\n"; echo " Comments: $comments <br />\n"; echo " <br />\n"; echo " Your CONFIRMATION NUMBER: $confirmation_number\n"; echo " <br /><br />\n"; echo " You will receive an email to VALIDATE your email address.\n"; echo " <br /><br />\n"; echo " Please visit us again <a href=\"http://www.horace-franklin-jr.com\">www.horace-franklin-jr.com</a>\n"; echo " </td>\n"; echo " </tr>\n"; echo " </table>\n"; echo " </body>\n"; echo " </html>"; } function Order(){ global $Date, $confirmation_number, $send_to, $first_name, $last_name, $suffix, $email, $telephone, $comments; $myFile = "contact_us.txt"; $fh = fopen($myFile,'a+') or die("can't open <i>$myFile</i>"); if(!$fh) { die("couldn't open file <i>$myFile</i>"); } else { rewind($fh); $str.= " Date: $Date\r\n"; $str.= " Confirmation Number: $confirmation_number\r\n"; $str.= " To: $send_to\r\n"; $str.= " First Name: $first_name\r\n"; $str.= " Last Name: $last_name\r\n"; $str.= " Suffix: $suffix\r\n"; $str.= " Email Address: $email\r\n"; $str.= " Telephone: $telephone\r\n"; $str.= " Comments: $comments\r\n"; fwrite($fh, $str); echo "success writing to file"; *** } fclose($fh); } function Verify_email_address { global $Date, confirmation_number, $send_to, $first_name, $last_name, $suffix, $email, $telephone, $comments; // EDIT THE 2 LINES BELOW AS REQUIRED $send_to = "$send_to"; $email_subject = "Re: Contact Us"; // FUNCTION function died() { // your error code can go here echo "These errors appear below.\n"; echo "<br /><br />\n"; echo "$error.\n"; echo "<br /><br />\n"; echo "Please go back and fix these errors.\n"; echo "<br /><br />\n"; die(); } // validation expected data exists if(!isset($_POST['send_to']) || !isset($_POST['first_name']) || !isset($_POST['last_name']) || !isset($_POST['suffix']) || !isset($_POST['email']) || !isset($_POST['telephone']) || !isset($_POST['comments'])) { died('We are sorry, but there appears to be a problem with the form your submitted.'); } $send_to = $_POST['send_to']; $first_name = $_POST['first_name']; $last_name = $_POST['last_name']; $suffix = $_POST['suffix']; $email = $_POST['email']; $telephone = $_POST['telephone']; $comments = $_POST['comments']; $error_message = ""; $email_exp = "^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$"; if(!eregi($email_exp,$send_to)) { $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; } if(!eregi($email_exp,$email)) { $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; } $string_exp = "^[a-z .'-]+$"; if(!eregi($string_exp,$first_name)) { $error_message .= 'The First Name you entered does not appear to be valid.<br />'; } if(!eregi($string_exp,$last_name)) { $error_message .= 'The Last Name you entered does not appear to be valid.<br />'; } if(strlen($comments) < 2) { $error_message .= 'The Comments you entered do not appear to be valid.<br />'; } $string_exp = "^[0-9 .-]+$"; if(!eregi($string_exp,$telephone)) { $error_message .= 'The Telphone Number you entered does not appear to be valid.<br />'; } if(strlen($error_message) > 0) { died($error_message); } $email_message = "Form details below.\n\n"; //FUNCTION function clean_string($string) { global $Date, confirmation_number, $send_to, $first_name, $last_name, $suffix, $email, $telephone, $comments; $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $subject ="Thank You"; $email_message = "Hello, $first_name $last_name $suffix\n"; $email_message .= "Thank you for contacting us. We will respond soon, usually within 48 hours.\n"; $email_message .= "This is what you submitted:\n"; $email_message .= "First Name: ".clean_string($first_name)."\n"; $email_message .= "Last Name: ".clean_string($last_name)."\n"; $email_message .= "Suffix: $suffix\n"; $email_message .= "Email: ".clean_string($email)."\n"; $email_message .= "Telephone: ".clean_string($telephone)."\n"; $email_message .= "Comments: ".clean_string($comments)."\n"; $email_message .= "Please validate your order by clicking Validate Order.\n"; $email_message .= "You will need your Confirmation Number $confirmation_number and Email Address to validate your order.\n"; $email_message .= "<a href=\"www.horace.franklin.jr.com/validated_orderform.php\"> Validate Order\n"; // create email headers $headers = 'From: '.$send_to."\r\n". 'Reply-To: '.$send_to."\r\n" . 'X-Mailer: PHP/' . phpversion(); $formsent = mail($email, $subject, $email_message, $headers); if ($formsent) { echo $formsent; } } ?>