I Writed 2 files like :
1> try.htm
<html>
<body>
<form name="linhpr" action="a.php">
<input name="try" type = "text" value="" />
<input type = "submit" value="send" />
</form>
<a href="javascript:document.linhpr.submit()">Try</a>
</body>
</html>
2> a.php
<?php
$t=$_GET["try"];
echo"Receive is : $t";
?>
NOW, I want to :
When you click "Submit" , Or link "Try" then the link will direct to a.html , use file .htaccess
HELP ME , Thanks EVERYONE



Reply With Quote





Bookmarks