Hi all,
how can i send the value selected by radio button to the next page.
thank u.

Hi all,
how can i send the value selected by radio button to the next page.
thank u.

on the first page where your radio button is make sure you have a value for the button:

<input type="radio" name="radioButtonName" value="yourButtonValue">

on the next page that you do your processing on you just call that radio button by its name:

$buttonValue = $_POST['radioButtonName'];

When you call $buttonValue - it will hold the value of the radio button on the previous page

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.