• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

An easy paid PHP job...

Riverworld

New Member
See the bottom of the post on how to submit the job

I'm offering $4 via Paypal to the person who can do this job for me... I can NOT guarantee your going to get paid just because you do it, its first done - you get paid. You will only recieve payment if the script and form work seamlessly from our server...

The task is to make http://www.bankstowncommunitycollege.nsw.edu.au/?body=enrolment&area=onlineform work

Copy the form section, go through and make a php-mailer of a sort and get it going. The form should be formatted into an easy-to-read email for the Bankstown Community College office staff...

If you need access to a PHP-running server, send me a PM and I will set you up a hosting account for the duration of the job.

Here is a script that you could possibly use, as a template, for the job:

PHP:
<?

$admin = ("enrol-tester@riverworld.net");

$sitename = ("BankstownCommunityCollege.nsw.edu.au");

$FName = $_POST['FName'];
$LName = $_POST['LName'];
$Address = $_POST['Address'];
$City = $_POST['City'];
$State = $_POST['State'];
$ZipCode = $_POST['ZipCode'];
$AreaCode = $_POST['AreaCode'];
$Phone1 = $_POST['Phone1'];
$Phone2 = $_POST['Phone2'];
$Email = $_POST['Email'];
$Message = $_POST['Message'];

$submissiondate = date("D dS M, Y h:i a");

$filename= "content/contact/counter.txt" ; // Numbers the submissions of the form
$fd = fopen ($filename , "r") or die ("Can't open $filename") ;
$fstring = fread ($fd , filesize ($filename)) ;
fclose($fd) ;

$fd = fopen ($filename , "w") or die ("Can't open $filename") ;
$fcounted = $fstring + 1 ;
$fout = fwrite ($fd , $fcounted ) ;
fclose($fd) ;

$msg = "----- Submission from BankstownCommunityCollege.nsw.edu.au -----\n\n";
$msg .= "Date/Time Submitted:     $submissiondate - EST\n";
$msg .= "Submission ID:           $fcounted\n\n";
$msg .= "Name:                    $FName $LName\n";
$msg .= "Mailing Address:         $Address\n";
$msg .= "                         $City, $State $ZipCode\n\n";
$msg .= "Phone Number:            ($AreaCode) $Phone1\n";
$msg .= "Email Address:           $Email\n\n";
$msg .= "Message:\n\n";
$msg .= "$Message\n\n";

$to = "$admin";
$subject = "$sitename Submission No. $fcounted\n";
$mailheaders = "From: $FName $LName <$Email>\n";
$mailheaders .= "Reply-To: $FName $LName <$Email>\n";

mail($to, $subject, $msg, $mailheaders);

?>

Submitting for payment:

You must email enrol-job-FWS@riverworld.net when you have completed with the following:

1) your name and Paypal address
2) A copy of the HTML form (most probably similar or the same as http://www.bankstowncommunitycollege.nsw.edu.au/?body=enrolment&area=onlineform )

3) All the files needed make it work, including the script

4) Zip/tar it all up and attach it to the email

5) Include a quick step-by-step how-to install instruction guide in the email

IF YOU HAVE ANY QUESTIONS, POST THEM IN THIS THREAD OR PM ME

Thanks all,

River
 
I hit submit on your form and you get a parse error, it's most likely just a missing bracket or quotes.

If you post the code you have now or even just line 110, i can probally fix the error for you, not sure if you'll find somebody to write the script form scratch for $4, no offence :confused2
 
Back
Top