Ok,
I am trying to get a varible passed from a form to go to another wml page. both of them are php pages. For some reason I get the postform value as a literal value. so for ex
if I had
<input name="what-my-var-is-called" type="text">
then
<do type="accept" label="send">
<go method="post" href="submit.wml">
<postform name="What-my-form-var-is-called" value="$(what-my-var-is-called)"/></go>
</do>
on the submit page I would
echo ($What-my-form-var-is-called);
and if I typed test in the form I would get $(what-my-var-is-called) instead of test
Please help