HTML Form Not Working With Image Submit Button?
I have the following html form i am testing out.
Solution 2:
Just add this inside the form:
<input type="hidden" name="submit" value="submit"/>
So that it receives the $_POST['submit']
in your PHP.
Solution 3:
<input type = "image" src = "uploads/defb.png" name = "submit" value = "submit"/>
change to:
<input type = "submit" name = "submit" value = "submit"/>
Because input didint have this type
create style for input HTML
<input type = "submit" name = "submit" value = "submit" id="button" />
CSS
#button {
background:url("uploads/defb.png");
border:0;
outline:0;
}
Post a Comment for "HTML Form Not Working With Image Submit Button?"