i am trying to retrive the data from client
the programme is html page
and save the file as check.html
and saved as check.php
but it is always showing the error as
Parse error: parse error in C:\wamp\www\dee raj\check.php on line 5
so pl..can any help me...
the programme is html page
Code:
<HTML> <HEAD></HEAD> <BODY> <FORM METHOD=POST ACTION="check.php"> Have you ever eaten haggis before? <INPUT NAME="Choice1" TYPE="Checkbox" VALUE="Haggis"> <BR> Have you ever eaten snails before? <INPUT NAME="Choice2" TYPE="Checkbox" VALUE="Snails"> <BR> Have you ever eaten locusts before? <INPUT NAME="Choice3" TYPE="Checkbox" VALUE="Locusts"> <BR> <BR> <INPUT TYPE=SUBMIT> </FORM> </BODY> </HTML>
Code:
<HTML> <HEAD></HEAD> <BODY> <?php echo "$Choice1"<BR>; echo "$Choice2"<BR>; echo "$Choice3"<BR>; ?> </BODY> </HTML>
but it is always showing the error as
Parse error: parse error in C:\wamp\www\dee raj\check.php on line 5
so pl..can any help me...
Comment