私はPHPを学んでおり、div内にある結果テーブルを作成しましたが、PHPの結果は、おそらくデフォルトであるdivの左側に自動的に表示されます。各列のpxを宣言することで、結果テーブルをdivの中央に表示するように設定できる方法があるかどうか疑問に思っていましたか?...divのコードは次のとおりです。 。
<div class="results" align="center">
<div><?php
$rfp = $_GET['cid'];
// Connects to Database
mysql_connect("localhost", "root") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
$data = mysql_query("SELECT rfp_id, issue_date, rfp_status.status FROM company, rfp, rfp_status WHERE company.company_id = rfp.company_id AND rfp_status.status_id = rfp.status_id AND company.company_id = '$rfp'")
or die(mysql_error());
echo "<table border=0 cellpadding=15>";
echo "<tr align = center bgcolor=white>
<td><b>RFP ID</b></td><td><b>Date Added</b></td><td><b>Status</b></td>" ;
while($row = mysql_fetch_array($data)){
$rid = $row['rfp_id']; //if you have the column names, replace 0 with 'column_name'
$idate = $row['issue_date'];
$status = $row['status'];
# inserts value into table as a hyperlink
echo "<tr align = center bgcolor=white><td>$rid</td><td><b><a target='_blank' href=view_section_detail.php?rid=$rid>$idate</a></b></td><td>$status</td>";
}
# displays table
print '</table>';
?></div>
どんな助けやアドバイスもいただければ幸いです...
ありがとう