Jump to content

getting values from radio boxes


c_pattle

Recommended Posts

I have a form that contains radio buttons and when it is submitted the content of the form are added to a database.  I was wondering how you get the values of radio boxes when submitting the form.  I have the following radio buttons and when submitting I use "$_POST['article_type']" but this doesn't seem to work.  Thanks for any help. 

 

<label>PDF Article</label><input name="article_type" value="pdf" type="radio" />
<label>Video Webcast</label><input name="article_type" value="webcast" type="radio" />
<label>Podcast</label><input name="article_type" value="podcast" type="radio" />

Link to comment
Share on other sites

If you save this code in a file named 'check.php' this works:

 

<?php
print_r($_POST);
?>

<HR>

<FORM METHOD="POST" ACTION="check.php">
<input type="submit" value="submit">

<label>PDF Article</label><input name="article_type" value="pdf" type="radio" />
<label>Video Webcast</label><input name="article_type" value="webcast" type="radio" />
<label>Podcast</label><input name="article_type" value="podcast" type="radio" />

</form>

 

which part am i missing ?

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.