Hi there,
I have a form here and I insert the image in it earlier. But now i wish to remove the image and something wrong with the function.
Here's the earlier code:
<form id="form4" name="form4" method="post" action=""><strong style="color:#FFF">
<label>
<input type="image" src="image/b_view.gif" name="button7" id="button7" value="Submit" align="top" /> <u>Pointer Summary</u>
</label></strong>
<input name="y" type="hidden" id="y" value="graph" />
<input name="student_id" type="hidden" id="student_id" value="<?php echo $row_vstudent['student_id']; ?>" />
<input name="stu" type="hidden" id="stu" value="student" />
<input name="graph" type="hidden" id="graph" value="insert" />
<input name="id" type="hidden" id="id" value="lect" />
</form>
Modified code to remove image
<form id="form4" name="form4" method="post" action=""><strong style="color:#FFF">
<label>
<input type="hidden" src="image/b_view.gif" name="button7" id="button7" value="Submit" align="top" /> <u>Pointer Summary</u>
</label></strong>
<input name="y" type="hidden" id="y" value="graph" />
<input name="student_id" type="hidden" id="student_id" value="<?php echo $row_vstudent['student_id']; ?>" />
<input name="stu" type="hidden" id="stu" value="student" />
<input name="graph" type="hidden" id="graph" value="insert" />
<input name="id" type="hidden" id="id" value="lect" />
</form>
I change the input type to "hidden" and the link seems not functioning anymore. Please advise