本文介绍了php查询字符串问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

html doc包含以下代码:

A html doc contains following codes:

<html>
  <form action="http://www.educationboardresults.gov.bd/result.php" method="post" >
  <tr align="center">
        <td width="60%"> <select name="board" class="textfield06">
                      <option value="Dhaka">--Select Board--</option>
             <option selected="selected" value="dhaka">Dhaka</option>
          </td>
       </tr>
         <tr align="center">
         <td>
          <input name="roll" class="textfield06" maxlength="6" type="text" value=123486>
         </td>
       </tr>
  <tr align="center">
         <td>
           <input name="Submit" class="submit" value=" View Result" type="submit">
         </td>
       </tr>
 </form>
</html>





如果点击查看结果,它会显示一个有效的结果。

但如果我点击下面的链接,它就不会返回结果。我之前做过。为什么它不起作用?

[]

返回错误:卷号不匹配或错误卷号



如果你想看到我的问题你可以去:

[]



If I click on View Result it shows a valid result.
But if I click the below link it doesn't return a result. I did that before. Why it is not working?
http://www.educationboardresults.gov.bd/result.php?board=dhaka&roll=123456[^]
Returns an error: "Roll number doesn't match or wrong roll number"

If you want to see my problem you can go:
http://www.educationboardresults.gov.bd[^]

推荐答案




这篇关于php查询字符串问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 16:16