2016-05-13 12 views
0

私はプロジェクトに取り組んでおり、小さな問題があります。私は、mySQLのテーブルに格納されている所有者にリクエストを表示したいと思います。 2番目のエントリは、1番目のエントリの次に来るのではなく、2番目のエントリの次に来るので、このように見えます。 ヘッダーヘッダーヘッダー 値の値の値2番目の値2番目の値2番目の値の2番目の値。 は、どのように私はこの問題を解決し、それぞれのヘッダ下の第二の値を入れて、value.Hereはそれのループの代わりに、外にあなたのtrを移動してみHTML PHPが別の行のテーブルへのエントリを入力する

<table border='1' cellpadding='5'>" 
    <title>View Incoming Orders</title> 
    <tr> <th>Restaurant Name</th> 
    <th>Customer</th> 
    <th>Order Date</th> 
    <th>Details</th> 
    <th>Cost</th> 
    <th>is Processed</th> 
    <th> Finalize Order </th> 
    <th> Delete </th> 

    </tr> 
    <tr> 
    <?php 
     $length=count($restaurantNames); 
      for($c=0; $c<$length; $c++){ 
      $custDate=$customers[$c]. "/".$orderDates[$c]; 
      echo "<td> $restaurantNames[$c]</td>"; 
      echo "<td> $customers[$c]</td>"; 
      echo "<td> $orderDates[$c]</td>"; 
      echo "<td> $detailss[$c]</td>"; 
      echo "<td> $costs[$c]</td>"; 
      echo "<td> $isProcesseds[$c]</td>"; 
      echo "<td><input type='checkbox' name='check_list[]' value='$custDate' />Finalize Order </td>"; 
      echo "<td><input type='checkbox' name='check_list2[]' value='$custDate' />Delete </td>"; 

      } 

     ?> 
    </tr> 
    <tr><input type="submit" id="update" name="update" value="Update"></input></tr> 
    </table> 

答えて

2

私のコードであることができます。また、titleは、使用方法には無効です。それはhead

<table border='1' cellpadding='5'>" 
    <title>View Incoming Orders</title> 
    <tr> <th>Restaurant Name</th> 
    <th>Customer</th> 
    <th>Order Date</th> 
    <th>Details</th> 
    <th>Cost</th> 
    <th>is Processed</th> 
    <th> Finalize Order </th> 
    <th> Delete </th> 

    </tr> 
    <?php 
     $length=count($restaurantNames); 
      for($c=0; $c<$length; $c++){ 
echo "<tr>"; 
      $custDate=$customers[$c]. "/".$orderDates[$c]; 
      echo "<td> $restaurantNames[$c]</td>"; 
      echo "<td> $customers[$c]</td>"; 
      echo "<td> $orderDates[$c]</td>"; 
      echo "<td> $detailss[$c]</td>"; 
      echo "<td> $costs[$c]</td>"; 
      echo "<td> $isProcesseds[$c]</td>"; 
      echo "<td><input type='checkbox' name='check_list[]' value='$custDate' />Finalize Order </td>"; 
      echo "<td><input type='checkbox' name='check_list2[]' value='$custDate' />Delete </td>"; 
echo "</tr>"; 
      } 

     ?> 

    <tr><input type="submit" id="update" name="update" value="Update"></input></tr> 
    </table> 
+0

このworks.Iにウェブサイトのタイトルタグのためのものですが、それは私が管理していますサイトで働いているので、私はタイトルがそのように動作することができると思うanswer.Butとしてそれを受け入れています – Curriculaa

関連する問題