stockdalep Posted April 14, 2007 Share Posted April 14, 2007 I have three pages page1.php has a radio button so has page2.php. I need to get the values of both buttons to display.php. I can get page2.php to the display.php page using the echo $_POST['myradio']; but this will not work for the radio button value in page1.php This is the order in which the pages are selected. page1.php page2.php display.php Thanks for any help Link to comment https://forums.phpfreaks.com/topic/47001-radio-buttons-passing-between-pages/ Share on other sites More sharing options...
Glyde Posted April 14, 2007 Share Posted April 14, 2007 On page2.php, you should receive the radio button from page1.php, and store it in a <input type="hidden" />. Then you'll be able to access it when you post to display.php. Link to comment https://forums.phpfreaks.com/topic/47001-radio-buttons-passing-between-pages/#findComment-229212 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.