如何发送包含隐藏表单字段的curl的POST表单?

时间:2012-05-23 10:16:45

标签: html post curl html-form

我想在此网站上提交带有curl的html表单。 http://pickupline.be/bekijk

当您点击“Stem”时,它会将帖子表单发送到http://pickupline.be/submitVote

表单需要以下字段:

<input type="text" id="num" name="num" class="required center_text">
<input type="text" id="firstname" name="fname" class="fname required" >
<input type="text" id="lastname" name="lname" class="lname required" >
<input type="text" id="mail" name="email" class="required email" >
<select name="birthday_day" class="required birthday_day">
<option selected value="">DD</option>
<option value="1">1</option>
<select name="birthday_month" class="required birthday_month">
<option selected value="">MM</option>
<option value="1">1</option>
<select name="birthday_year" class="required birthday_year">
<option selected value="">JJ</option>
<option value="2000">2000</option>
<input type="checkbox" id="chkOpdehoogte" name="newsletter"><label   for="chkOpdehoogte">Ik wil op de hoogte blijven van nieuwe inzendingen</label>
<input type="checkbox" id="chkAgreeConditions" name="agree" class="required"><label for="chkAgreeConditions">Ik ga akkoord met het <a href="http://pickupline.be/reglement" target="_blank">reglement</a></label>
<input type="hidden" id="pickupline_id" name="id">
<input type="submit" value="STEM">

请注意,ID已隐藏。 这是我到目前为止所尝试的:

curl -v --data 'num=${nummer}&fname=${voornaam}&lname=${achternaam}&email=${mail}&birthday_day=${dag}&birthday_month=${maand}&birthday_year=${jaar}&agree="yes"&id=100' http://pickupline.be/submitVote --referer http://pickupline.be/bekijk

但我没有收到服务器的回复。 我也尝试过保存饼干并使用它们卷曲,没有区别。

1 个答案:

答案 0 :(得分:2)

隐藏只是浏览器不向用户显示字段的属性。它仍然以与实际HTTP POST请求中的任何其他表单字段相同的方式发送。