Jump to content

Radio Group and php


npdeleon

Recommended Posts

Hi,

I'm a n00b to php and I'm having trouble getting my radio group and buttons to work with my php part, mostly because I'm not sure how to code it. my site is: [a href=\"http://ebiz.uoregon.edu/students/ndeleon/\" target=\"_blank\"]http://ebiz.uoregon.edu/students/ndeleon/[/a]

Here's my script that I have (before I added the radio group to the page, it worked fine):

[code]<?php
    $message = "First Name: {$_POST['firstName']}\r\n";
    $message .= "Last Name: {$_POST['lastName']}\r\n";
    $message .= "Address: {$_POST['address']}\r\n";
    $message .= "City: {$_POST['city']}\r\n";
    $message .= "State: {$_POST['state']}\r\n";
    $message .= "Zip Code: {$_POST['zipCode']}\r\n";    
    $message .= "Phone: {$_POST['phone']}\r\n";    
    $message .= "E-mail from: {$_POST['senderEmail']}\r\n";
    $message .= "E-mail Message: {$_POST['emailMessage']}\r\n";
    if (mail("npdeleon@aol.com","Test php",$message,"From: {$_POST['senderEmail']}")) {
        echo "E-mail message mailed successfully.";
    }
    else {
        echo "Problem sending e-mail";
    }
    if (mail($_POST['senderEmail'],"E-mail from website",$message,"From: helpdesk@ebiz.uoregon.edu")) {
        echo "<br /> A copy has been sent to your e-mail address.";
    }
    else {
        echo "Problem sending e-mail<br /><br />";
    }
?>[/code]

If anyone can help me figure out how I'd code the radio group in teh php that'd be great!
Link to comment
Share on other sites

[!--quoteo(post=351458:date=Mar 3 2006, 06:57 PM:name=TylerL)--][div class=\'quotetop\']QUOTE(TylerL @ Mar 3 2006, 06:57 PM) [snapback]351458[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Do you mean radio BUTTONS or is there some radio field? I cant seem to figure out your question.
[/quote]

He means the radio buttons.




[code]$message .= "They have asked to {$_POST['reqUpdate']} information.\r\n";[/code]

Does that work?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.