Search found 2 matches
- Mon Apr 26, 2010 7:59 am
- Forum: PHP - Code
- Topic: New to PHP Need Help
- Replies: 2
- Views: 416
Re: New to PHP Need Help
<?php $contact_name = $_POST['name']; $contact_email = $_POST['email']; $contact_subject = $_POST['subject']; $contact_message = $_POST['message']; $base64contents = rtrim(chunk_split(base64_encode($contact_message))); if( $contact_name == true ) { $sender = $contact_email; $receiver = "orders...
- Sun Apr 25, 2010 8:13 pm
- Forum: PHP - Code
- Topic: New to PHP Need Help
- Replies: 2
- Views: 416
New to PHP Need Help
I am working on this project that requires long emails to be sent through a form. The email coming through had ! points and line breaks in weird places. I found some code to correct that...it encodes the message, I am not sure how to decode it. my code is: <?php $contact_name = $_POST['name']; $cont...