Web Design Forum  
 
Go Back   Web Design Forum > Web Trader > Requests

Reply
 
LinkBack Thread Tools Display Modes
Old 03-25-2010, 09:27 AM   #1
New Member
 
Join Date: Mar 2010
Posts: 2
Default Need Simple PHP to Email "Schedule" Page

I need a to make an online scheduling page for a legal services firm's website, similar to this page:
http://www.benchmark...-scheduling.asp

I believe this is a php to email script. It has to have the ability to attach a file. This should not be very difficult.

Please contact me or post here if you can help me out and we will work out a price. I can pay via paypal.

Thanks
walkthewalk is offline   Reply With Quote


Old 03-25-2010, 02:05 PM   #2
Bronze Member
 
Join Date: Mar 2010
Location: New Zealand
Posts: 55
Default

<?php
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "Email you want to receive it";
$email_subject = "Subject Variable";

// What ever form variables you had / want
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];

$email_message = "Form details below.\n\n";

function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}

// compile the message, obviously the more variables ad them on the end etc
$email_message .= "Name: ".clean_string($name)."\n";
$email_message .= "Email: ".clean_string($email)."\n";
$email_message .= "Comments: ".clean_string($message)."\n";


// create email headers
$headers = 'From: '.$email."\r\n".
'Reply-To: '.$email."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>

That will get you started , file upload isnt too difficult some one else can help you there
jemountfort is offline   Reply With Quote
Old 03-25-2010, 09:07 PM   #3
New Member
 
Join Date: Mar 2010
Posts: 2
Default

I dont need a comment form. I need something that has alot more flields and some checkboxes and file upload.
walkthewalk is offline   Reply With Quote
Reply

Thread Tools
Display Modes

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 On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:41 PM.


Camera Forum - Computer Forum - Web Design Forum

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.