This might not be the right group for this question, since its kind of
a pure html question...
Given the html construct:
<form action='index.p hp?expand=0,100 00' method='post'>
Email: <input type='text' name='login[email]' size='30'/>
Password:<input type='password' name='login[passwd]' size='30'/>
</form>
I'm trying to construct a url so that the form values are posted in the
url...
I.e, something like:
http://www.acme.com/index.php?expan d0,10000&login[email]=joe@mail.com&l ogin[passwd]=secret1234
.... but since the form values to receive the values looks like an
array(??) this doesn't seem to work.
Just wondering if anyone could give me some hints on what I'm doing
wrong here.
Thanks for any comments.
/Brian
a pure html question...
Given the html construct:
<form action='index.p hp?expand=0,100 00' method='post'>
Email: <input type='text' name='login[email]' size='30'/>
Password:<input type='password' name='login[passwd]' size='30'/>
</form>
I'm trying to construct a url so that the form values are posted in the
url...
I.e, something like:
http://www.acme.com/index.php?expan d0,10000&login[email]=joe@mail.com&l ogin[passwd]=secret1234
.... but since the form values to receive the values looks like an
array(??) this doesn't seem to work.
Just wondering if anyone could give me some hints on what I'm doing
wrong here.
Thanks for any comments.
/Brian
Comment