my code is as follows
<form method="post" action="raf_details.php?raf=<? echo $_POST['raf']; ?>">
<table width="60%" border="0" cellspacing="2" cellpadding="2" align="center">
<tr style="background-color:#C1C1C1" align="center">
<td>RAF</td>
<td>Phone Number</td>
<td>Search</td>
</tr>
<tr align="center" bgcolor="#E8F8FF" style="background-color:#E1E1E1">
<td><input type="text" name="raf" id="raf" value="<?php echo $_POST['raf'];?>" /></td>
<td><input type="text" name="phone" id="phone" value="<?=$_POST['phone'];?>"/></td>
<td><input type="image" src="../images/btnFind.png" id="find" name="find" /></td>
</tr>
</table>
</form>
But it is not fecthing $_POST['raf'] value in url my url is just showing
http://localhost:8888/ample/payment/raf_details.php?raf=
$_POST['raf']in raf_details.php without passing in action URL.$_POST['raf']has value or not?