我試圖在每一行上生成一個帶有複選框的表格。我發現了一個基於查詢結果生成表的工作代碼。是否可以在這裏插入一個代碼,這將提供一個額外的列,其中將包含每行中的複選框?在查詢結果中生成html表格中的複選框
<?php
function SQLResultTable($Query)
{
$link = mysql_connect("localhost","root" , "") or die('Could not connect: ' . mysql_error()); //build MySQL Link
mysql_select_db("dbName") or die('Could not select database'); //select database
$Table = ""; //initialize table variable
$Table.= "<table border='1' style=\"border-collapse: collapse;\">"; //Open HTML Table
$Result = mysql_query($Query); //Execute the query
if(mysql_error())
{
$Table.= "<tr><td>MySQL ERROR: " . mysql_error() . "</td></tr>";
}
else
{
//Header Row with Field Names
$NumFields = mysql_num_fields($Result);
$Table.= "<tr style=\"background-color: #000066; color: #FFFFFF;\">";
for ($i=0; $i < $NumFields; $i++)
{
$Table.= "<th>" . mysql_field_name($Result, $i) . "</th>";
}
$Table.= "</tr>";
//Loop thru results
$RowCt = 0; //Row Counter
while($Row = mysql_fetch_assoc($Result))
{
//Alternate colors for rows
if($RowCt++ % 2 == 0) $Style = "background-color: #FFCCCC;";
else $Style = "background-color: #FFFFFF;";
$Table.= "<tr style=\"$Style\">";
//Loop thru each field
foreach($Row as $field => $value)
{
$Table.= "<td>      $value      </td>";
}
$Table.= "</tr>";
}
}
$Table.= "</table>";
return $Table;
}
?>
是,其可能的。 – rcdmk 2012-02-10 14:40:21
我建議你使用你最喜歡的搜索引擎,並尋找a)PHP教程b)HTML教程... – ManseUK 2012-02-10 14:51:50