PHP Form Submission

This should be pretty simple i had this working as intended untill i build the no option form. I’ve been through it so many times now i cant think strait. A little help would be much appreciated.

Form asking for agency yes or no

[code]

						<h4>Are you employed by, or recruiting for an agency?</h4>
						<input type="radio" name="agencyCheck" value="1"/>&nbsp;Yes
						<input type="radio" name="agencyCheck" value="0"/>&nbsp;No<br /><br />
						<input type="submit" name="submit" value="submit" />
						</form>[/code]

And that links to
[php]<?php

if(agencyCheck==“1”){
echo “<meta http-equiv=“refresh” content=“0;url=http://10.0.0.5/recruiterForm.html” />”;
}else{
echo “<meta http-equiv=“refresh” content=“0;url=http://10.0.0.5/userSignUp.html” />”;
}
?>[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service