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("[email protected]","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: [email protected]")) {
        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
https://forums.phpfreaks.com/topic/4044-radio-group-and-php/
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
https://forums.phpfreaks.com/topic/4044-radio-group-and-php/#findComment-14036
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.