ID:145134
 
Code:
var/lol = {"<form action="http://"><input type="text"><input type="submit" value="Search">"}


Problem description:
Well, i want to know what am i doing wrong, what action should i be using. It is suposed to make what u type there goto a webpage, you know?

EDIT: I have hardly any html expeirence.

*would really like to know* :)
What exactly are you trying to do?
If you're trying to make it to where you can specify a site to search for a specific term, Google has this feature, so you can redirect to Google in the browser.

var/search={"
<html>
<body>
<center>
To search for a specific term within a site, specify the website after "site:", and then after a space, place your search term(s). For example: "site:http://www.byond.com/ Games"
<form name="f" action="http://www.google.com/search">
<input type="hidden" name="hl" value="en">
<input maxlength="2048" size="55" name="q" value="site:" title="Google Search">
<br><input type="submit" value="Search" name="btnG">
</form>
</center>
</body>
</html>"}