現在私はPHPのテーブルで私のコンテンツを表示することができますが、テーブルの内容は、何か良い方法がありますか? enter image description hereシンボルどのように単語の末尾に他のシンボルを持たないで私のPHPテーブルをプレビューする
<?php
// This file I have named it getdata.php
// And you will see why
include("config.php");
//Query of facebook database
$result = mysqli_query($db, "select * from my_conference")
or die("Failed to query database");
//Output results
if(!$result)
{
mysqli_close();
echo json_encode("There was an error running the query: " . mysqli_error());
}
elseif(!mysqli_num_rows($result))
{
mysqli_close();
echo json_encode("No results returned");
}
else
{
$header = false;
\t $output_string = "";
$output_string .= "<table border='1'>";
while($row = mysqli_fetch_assoc($result))
{
if(!$header)
{
$output_string .= "<tr>";
foreach($row as $header => $value)
{
$output_string .= "<th>{$header}</th>";
}
$output_string .= "</tr>";
}
$output_string .= "<tr>";
foreach($row as $value)
{
$output_string .= "<th>{$value}</th>";
}
$output_string .= "</tr>";
}
$output_string .= "</table>";
}
echo date("Y-m");
// This echo for jquery
echo json_encode($output_string);
?>
セル値の周りに「