:hi:majinbuu1023 said:can anyone help me with this
I need a text box and a submit button, you put in a number in the textbox then it goes to url.ext/structure/auction_detail.asp?id=number
can anyone help me with this?
<?php
$id = $_GET['id'];
if ($id)
{
header("Location: http://example.com/structure/auction_detail.asp?id=$id");
exit;
}
else
{
?>
<form method="get" action="<?=$SERVER['PHP_SELF']?>">
<input type="text" name="id">
<input type="submit" value="Submit">
</form>
<?}?>



