bukaida
In the zone
I want to pass a text information to a php page using link. The following code will display my intention
There is a simple textbox. Below it there are three hyperlinks containing the image(like a button).
The idea is to go to three different php pages (one at a time, depending on the click) with the textbox value so that they can be used in those pages(by $_POST/GET/REQUEST or any other method).How to do that? Please help.
Code:
<html>
<head><title>Display by id</title>
</head>
<body>
<form >
<table align="center">
<tr><td><b>Enter the Book id:</b></td>
<td><input type="text" name="id" size="10"></td></tr>
<tr><td><a href="search_prev.php"><img src="images/prev.JPG" alt="" width="90" height="34" border="0"></a></td>
<td><a href="search_by_id.php"><img src="images/Go.JPG" alt="" width="71" height="34" border="0"></a></td>
<td><a href="search_next.php"><img src="images/next.JPG" alt="" width="90" height="34" border="0"></a></td>
</tr>
</table>
</form>
</body>
</html>
There is a simple textbox. Below it there are three hyperlinks containing the image(like a button).
The idea is to go to three different php pages (one at a time, depending on the click) with the textbox value so that they can be used in those pages(by $_POST/GET/REQUEST or any other method).How to do that? Please help.