i want to make a login form to login to a web... but something is wrong.. when i copy default form from the site... it works.. it has a submit btn and has no name just a value .... when i change value...it not work... i want to know how the input be send without any name... thank you

<form id="frm-12827221184c74c9466e522" method="post"
  action="http://www.mihanblog.com/web/signin/index/atrty/1282722118/avrvy//key/f5224dc9066b9f05c83d1df787019e69/">
<div class="form-row clearfix">
    <label class="" for="address">address</label>
    <input type="text" name="data[address]" id="address" value="" class="english">
</div>

<div class="form-row clearfix">
    <label for="username">username</label>
    <input type="text" name="data[username]" id="username" value="" class="english">
</div>

<div class="form-row clearfix">
    <label class="" for="userpass">userpass</label>
    <input type="password" name="data[userpass]" id="userpass" value="" class="english">
</div>

<div class="controls clearfix">
    <input type="hidden" name="secfrdcodedvar" id="secfrdcodedvar" value="c7475daec89cff9e98336f3864b164c0">
    <input type="submit" value="11" class="btn" style="width:80px">
</div>

        <input type="hidden" name="frm-id"value="12827221184c74c9466e522" id="frm-id"></form>
link|improve this question

44% accept rate
Where's the cURL issue here? You haven't closed your form tag. – Evernoob Aug 25 '10 at 8:45
i mean how to use an iput has no name to assign it with curl – Unix Man Aug 25 '10 at 8:51
Hi Moustaf: How did you solve this issue then? – Wasim_hc May 26 '11 at 16:51
feedback

1 Answer

You should consider checking traffic with tools like Wireshark. It will help you understand how HTTP works and how to particular form works. Then try to replicate it with cURL and you'll be able to see the differences

link|improve this answer
I CAN'T UNDERSTAND – Unix Man Aug 25 '10 at 9:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.