cloudd1
02-19-2012, 09:28 PM
Hey
my code is the following <html>
<body>
<form action="./index.php?inc=yo&">
<p>
Hash:</br>
<input type="test" name="try" size="25" maxlenth="98" />
</p>
<p>
<input type="submit" name="submit" value="submit" />
</body>
</html>
What I am trying is to achieve is that I want the url to look like the following:/index.php?inc=yo&try=[submittedinputhere]
but it seems to ignore this " ?inc=yo& "
Any way around this? :/
Found a work around, I'll be using POST instead..
my code is the following <html>
<body>
<form action="./index.php?inc=yo&">
<p>
Hash:</br>
<input type="test" name="try" size="25" maxlenth="98" />
</p>
<p>
<input type="submit" name="submit" value="submit" />
</body>
</html>
What I am trying is to achieve is that I want the url to look like the following:/index.php?inc=yo&try=[submittedinputhere]
but it seems to ignore this " ?inc=yo& "
Any way around this? :/
Found a work around, I'll be using POST instead..