2014-04-29 67 views
0

我缺少什麼 得到如何將一個複選框添加到行的結果

Parse error: syntax error, unexpected 'checkbox' (T_STRING), expecting ',' or ';' in C:\xampp\htdocs\index.php on line 70

if(mysql_num_rows($result) !== 0) 
      { 
      while($row=mysql_fetch_array($result)) 
       { 
       echo '<tr> 
       <td>'.$row['aid'].'</td> 
       <td>'.$row['Name'].'</td> 
       <td>'."<input type="checkbox" class='form' value="1" name="checkbox[]" />".'</td> 
       </tr>'; 
       } 
      } 

回答

3

更正此行

<td>'."<input type="checkbox" class='form' value="1" name="checkbox[]" />".'</td> 

這樣

<td>'."<input type='checkbox' class='form' value='1' name='checkbox[]' />".'</td> 
0

試試這個方式,

if(mysql_num_rows($result) !== 0) 
     { 
     while($row=mysql_fetch_array($result)) 
      { 
      echo '<tr> 
      <td>'.$row['aid'].'</td> 
      <td>'.$row['Name'].'</td> 
      <td><input type="checkbox" class="form" value="1" name="checkbox[]" /></td> 
      </tr>'; 
      } 
     } 
相關問題