2014-09-28 2 views
0

메인 페이지의 링크 페이지를 가져 오지 :wget과 - 포스트 데이터 및 결과 테이블

<h1>Daily Price Information</h1><hr> 
<form name="price" id="price" method="post" action="" > 
    <table> 
    <tr><td> Date : </td> 
     <td><input type="text" name="date" id="datepicker" class="required"></td> 
    <td> Price Type : </td> 
    <td><select id="pricetype" name="pricetype" class="required"> 
     <option value="W">Wholesale</option><option value="R">Retail</option></td> 
    <td><input type="button" value="View" name="view" onclick=dlypriceview() ></td></tr> 
    </table> 
</form> 
<div id="pricelist"> 
    </div> 

http://kalimatimarket.com.np/daily-price-infomation 방법이 양식에 데이터를 게시 할 수 있습니까?

당신은 잘못된 URL에 게시하려고

wget --post-data 'date=09/01/2014&price=post&view=1' http://kalimatimarket.com.np/daily-price-infomation -O market.html 

답변

0

시도해보십시오.

wget --post-data 'cdate=09/01/2014&pricetype=W' http://kalimatimarket.com.np/priceinfo/dlypricebulletin -O wholesale_market.html

또는

wget --post-data 'cdate=09/01/2014&pricetype=R' http://kalimatimarket.com.np/priceinfo/dlypricebulletin -O retail_market.html

:

는 이러한 시도

관련 문제