How can we submit a form without a submit button?
Answers were Sorted based on User's Feedback
Answer / patahul abas
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">POST IT</a>
Or you can do this
<a href="abc.asp">POST IT</a>
Or
<a href="abc.php">POST IT</a>
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / ragavan
using php page transfer code:
header(Location:example.php)
| Is This Answer Correct ? | 2 Yes | 7 No |
Answer / parag kuhikar
<form >
<select name="select" onchange="form.action='a.php'">
<option value="yes">yes</option><option
value="no">no</option></select>
<input type="image"
src="../../../Users/Dell/Desktop/images/Avatar Movie
Wallpaper 3.jpg" height="10" width="10" />
</form>
| Is This Answer Correct ? | 0 Yes | 9 No |
How to create a directory?
How does the identity operator === compare two values?
What is the scope of a variable defined in a function?
How to remove values saved in the current session?
Is php free to use?
Do I need apache for php?
What are the different filter functions used to filter a variable?
What is the meaning of xdebug?
Write a php code which could be used to generate random numbers between 1 - 100 and display them on the screen.
What is meant by urlencode and urldecode?
How can we change the maximum size of the files to be uploaded?
What is oops php?