if a checkbox is checked it should redirect to ant other page
plz help
if a checkbox is checked it should redirect to ant other page
plz help
This checkbox should have a name and a value, so in the controller:
if (isset($_POST['checlboxName']))
$this->redirect(array([...]));
its working fine
thanks for reply