Radio Button with submit issue

  • Thread starter Thread starter Anonymous
  • Start date Start date
A

Anonymous

Guest
Hello,
This is my code ,In rdstatus1 is radio button name and CM is value,Now when user click on CM value and submit then customerFeedback page open but its not open Kindly advice me.

if(isset($_POST['submit']) && ($_REQUEST['rdstatus1']=='CM'))
{
$name=$getRecord['Ws_Id'];
header('location:customerFeedback.php?wsid=' .$name);
}
 
Hi,

Code:
header('Location: customerFeedback.php?wsid=' .$name);

"Location" is uppercase and needs a space after ":"
 
Back
Top