Any one able to help. Been given an existing web app to convert to another product, open source etc, and been a while since I have touched php in any form.

Calling Form

<tr>
<td>Dummy</td>
<td><input type=text name=movietitle size=100></input></td>
</tr>
post submit code


$movetitle = $_REQUEST["movietitle"];
$movetitle isn't picking up the data though other variables are picking up values from other similar code statements

And before anyone says anything, yes I know it's pretty dumb web stuff but we want to get the functionality working before introducing div and CSS etc in a second iteration.

Yes the end product will be available as free open source etc.

TIA