I'm trying to get through some basic php to create a very simple website. So far I have the HTML, and the required forms from which to get with php. But, I am dealing with so many little technical errors that I feel i'm probably doing something fundamentally wrong.
I'd be willing to paypal a few bucks for anybody willing to set-up the PHP backside and fix a few technical kinks.
Here is the script:
<html>
<head>
<php
$to = $_REQUEST['Email'] ;
$name = $_REQUEST['Name'];
$subject = "A Person Has Signed Up";
$message = "$name has signed up for {$_POST['R1']}";
mail( "myemail.2@osu.edu", $subject, $message, "From: $to" );
?>
pretty goddamn simple right? That's why its so frustrating to see this crap not working. Anyways, I'm willing to take any advice on how to make any kind of registration script.
ps $_POST R1 is selecting a chosen radio button value
I'd be willing to paypal a few bucks for anybody willing to set-up the PHP backside and fix a few technical kinks.
Here is the script:
<html>
<head>
<php
$to = $_REQUEST['Email'] ;
$name = $_REQUEST['Name'];
$subject = "A Person Has Signed Up";
$message = "$name has signed up for {$_POST['R1']}";
mail( "myemail.2@osu.edu", $subject, $message, "From: $to" );
?>
pretty goddamn simple right? That's why its so frustrating to see this crap not working. Anyways, I'm willing to take any advice on how to make any kind of registration script.
ps $_POST R1 is selecting a chosen radio button value
Comment