0

私はサイトphpに取り組んでいます。サイトにはクイズセクションがあり、クイズセクションには50の質問があり、すべての質問には送信ボックスにオプションを入れる必要がある4つのオプションがあります.....私はそのphpを作成しましたが、成功しません

preg_match('/Question no:(.*?) を作成したのは私のphpです

if(preg_match('/input type=\"text\" name=\"(.*)\" id=\"(.*)\"  value=\"Type your answer here\" style=\"border:0 none;\"/i',$dt,$n)) 
$ans_field = $n[1]; 

$post_data3 = "qxci=$qxci";
curl_setopt($ch, CURLOPT_URL,"hhttp://www.faasty.com/quiz.php");
curl_setopt ($ch, CURLOPT_HTTPHEADER, Array("Content-Type: application/x-www-form-urlencoded","Accept: */*"));
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data3);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$at = curl_exec($ch);

問題は、このサイトの質問とオプションがテキスト形式ではなく、画像の src 形式であることです。

question is 
"""Goal attack" and "Wing defence" are positions in which sport?""
it have below image src 

    <p><img src="http://www.faasty.com/Views/fiJOvNRrVW.php?iaodifu=1730" height="200" width="379"/></p>

質問の場合、4つのオプションは

a cricket

    <p class='q_bg1_qq fl'>
   <img src="http://www.faasty.com/unsanswerit.php?iaodifu=1"/></p>

b.baseball
<p class='q_bg1_qq fr'>
<img src="http://www.faasty.com/unsanswerit.php?iaodifu=1"/></p>

cgolf

<p class='q_bg1_qq f2'>
<img src="http://www.faasty.com/unsanswerit.php?iaodifu=1"/></p>

d betminton
<p class='q_bg1_qq fr'>
<img src="http://www.faasty.com/unsanswerit.php?iaodifu=1"/></p>

入力のソースコードは

    <input type="text" name="zQnBWllwYI" id="zQnBWllwYI"  value="Type your answer here"  style="display:none;" onBlur="javascript:FillValueOnBlur('zQnBWllwYI','Type your answer here');" onFocus="javascript:FillValueOnFocus('zQnBWllwYI','Type your answer here');" class="inpt_qq fl">

送信ボックスのソースは

<div class="comman_btn m_none fl"><a href="javascript:void(0)" onclick = "javascript:ScrollUp(70);CHECKFORM_METHOD();">Submit</a></div>

送信ボックスのオプションにphpを入力する方法を教えてください

4

0 に答える 0