I have this HTML code to create the form:
<form method="POST" action="/post.php" name="signup">
<table>
<tr>
<td>URL:</td>
<td><input type="text" name="url" size="90" value=""/></td>
</tr>
<tr>
<td>Title: </td>
<td><input type="text" name="title" size="90"/> </td>
</tr>
</table>
</form>
What I want to do is when a user enters a URL in the url input, I get the the title of the page, and the script outputs it to the title input. To get the title from an URL I have a PHP Script.