Jump to content

simple radio button mailer help! please


ball420

Recommended Posts

for some reason when i click submit it does nothing it is set to talk to mailer.php when clicked and then lead to nextstep.php i have gone over these pages a hundred times with no luck please help.thanks for the replies.

 

here is the html

<form method="post" action="mailer.php">
      <p>
        <label>
          Song name one
          <span class="style1">..........          </span>
          <input type="radio" name="song1" value="1" />
          1</label>
        
        <label>
          <input type="radio" name="song1" value="2" />
          2</label>
        
        <label>
          <input type="radio" name="song1" value="3" />
          3</label>
        
        <label>
          <input type="radio" name="song1" value="4" />
          4</label>
        
        <label>
          <input type="radio" name="song1" value="5" />
          5</label>
        </p>
    </form></td>
    <td> </td>
  </tr>
  <tr>
    <td height="319"> </td>
    <td> </td>
    <td> </td>
    <td> </td>
    <td> </td>
  </tr>
  
  
  
  <tr>
    <td height="24"> </td>
    <td> </td>
    <td valign="top"><input type="submit" value="submit" name="submit">

 

here is the php code

<?php


if(isset($_POST['submit'])) {





$nextstep = "nextstep.php";
$song1 = $_POST['song1'];









$body = "

$song1 /n" ;

  }
  
  



$to = "me@yourmom.com"; 
$subject = 'coming home' . $subject ;

  }
  
  
   mail($to,
        $subject,
        $body);
        
header('Location: nextstep.php');



exit; 
?>

 

 

 

 

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.