PHP循环使用按钮ID的表单

时间:2015-01-08 15:23:36

标签: javascript php jquery

我试图让php中的循环工作,遗憾的是,它没有做它必须做的事情,它完全循环数组等,但是当我点击按钮时没有任何反应。只有第一个按钮有效。

在这里:

     <script>

  $(function() {

    $( "#datepicker" ).datepicker();

  });

  </script>

到目前为止JS ^ nog的php。没有发布整个代码。因为它很长但是在这里开始为每个,完全工作。

echo    "<table>
                        <thead>
                        <tr>
                        <td>Name</td>
                        <td>Last Name</td>
                        <td>Email</td>      
                        <td>Extension</td>
                        <td>Numbers</td>
                        <td>Datum</td>
                        </tr>";     

            foreach ($response as $key => $value) {

                echo "
                    <tr>
                    <td>".$value['fname']."</td>
                    <td>".$value['lname']."</td>
                    <td>".$value['email']."</td>
                    <td>".$value['ext']."</td>
                    "; 
                foreach ($value['numbers'] as $key2 => $numvalue) {
                echo"<td>".$numvalue."</td>";

                }
                echo "<td>";
                echo("<form action='<?php echo" . $_SERVER['PHP_SELF'] . "?>' method='post'> <input type='button' name='button' id='datepicker' value='Get call history'></form>");
                echo "</td>";
            }


                echo "
                    </tr>
                    </thead>
                    </table> "; 

我想这里有一个问题:

echo("<form action='<?php echo" . $_SERVER['PHP_SELF'] . "?>' method='post'> <input type='button' name='button' id='datepicker' value='Get call history'></form>");

很抱歉长代码..

1 个答案:

答案 0 :(得分:1)

毕竟我找到了正确的答案,确实要把它改成一堂课,感谢Tom Hart

  $(function() {

$(".datepick2").datepicker({'dateFormat': 'd/m/y'});

  });

  </script>

和表格

echo("<form action='" . $_SERVER['PHP_SELF'] . ">' method='post'> <input type='button' name='button' class='datepick2' value='Get call history'></form>");