我試圖用mySQL的5個字段的數據填充表結構。我對Web開發完全陌生,所以我覺得這很困難。使用php或jquery填充html表(或類似結構)
這是我目前使用的填充我的HTML元素的JavaScript行:
$.get("reports.php",
{"param":"getusers"},
function(returned_data)
{
alert(returned_data);
document.getElementById("allusers").innerHTML = returned_data; // Clear the select
});
,這是它訪問PHP:
case "getusers":
$result = mysql_query(
"SELECT * FROM users")
or die(mysql_error());
while($row = mysql_fetch_assoc($result))
{
$str .= "<option>". $row['username'] .</option>"; //accumulate table
}
echo $str;
break;
這完全檢索數據,但我需要把它裝入一個有幾列和幾行的結構中。我無法弄清楚如何做到這一點。我嘗試了很多解決方案,其中一些涉及CSS,但我無法弄清楚。
我喜歡this example但它只顯示我使用它時的源代碼。我不知道如何打電話給我的reports.php,這使它有點混亂。
我將如何去發送這些數據到我的html文件並構建它以有組織的格式顯示?
我將非常感謝任何幫助,
感謝。
非常感謝! – DatabaseDiver