below in the form action, i've put "test.php?w=$sw&h=$sh" but when i input the form and submit i get this..
test.php?search=example&submit=search
how do i get all together in the url? like this
http://test.php?w=$sw&h=$sh&search=example&submit=search
i even tried this
<form action="<?php
$sw = $_GET['w'];
$sh = $_GET['h'];
$theurl = "http://test.php?w=$sw&h=$sh&";
echo $theurl; ?>" method="get">
<input type="text" size="35" name="search" />
<input type="submit" name="submit" value="search" style="font-size:10px" />
</form>
still comes up like "test.php?search=example&submit=search"
any help?
i'll simplify it later