正如您在下面的脚本中所说的那样,我有一个问题,我不打算详细介绍脚本的功能,因为基于阅读脚本它非常明显......
<body background="Background here" bgproperties="fixed">
<?php
$DBNAME="login info here";
$DBUSER="login info here";
$DBPASSWORD="login info here";
$DBHOST="login info here";
//Connection is below
mysql_connect($DBHOST, $DBUSER, $DBPASSWORD) or die("<center>Cannot connect to MySQL</center>");
mysql_select_db($DBNAME) or die("<center>Cannot Connect to MYSQL</center>");
$sql = 'SELECT `nick`, `votes` FROM `votesdb` ORDER BY `votes` desc LIMIT 0, 10 ';
$result=mysql_query($sql);
$fields_num = mysql_num_fields($result);
echo "{$table}</h1>";
echo "<table border='0' bgcolor=#FFFFFF><tr>";
// printing table headers
for($i=0; $i<$fields_num; $i++)
{
$field = mysql_fetch_field($result);
echo "<td>{$field->name}</td>";
}
echo "</tr>\n";
// printing table rows
while($row = mysql_fetch_row($result))
{
echo "<tr>";
// $row is array... foreach( .. ) puts every element
// of $row to $cell variable
foreach($row as $cell)
echo "<td>$cell</td>";
echo "</tr>\n";
}
mysql_free_result($result);
?>
你可以告诉我们:[http://legacyserver.info/fbxtop.php] [1] 表背景不与图像混合,在页面的其余部分平铺背景,显然,这看起来很丑陋和奇怪,我怎么能将表的背景更改为页面其余部分的背景!我试过谷歌搜索,但没有用。请帮忙! :)
显然我还需要弄清楚如何更改文字颜色:)
答案 0 :(得分:1)
在表格中添加以下样式或为其指定具有以下样式的类名称:
background-color: transparent;
您还必须更改表格的字体颜色。
答案 1 :(得分:1)
将style属性添加到table并将其设置为'background-color:transparent; color:white;'
等
echo "<table border='0' style='background-color: transparent; color: white;'><tr>";
答案 2 :(得分:0)
只需添加:
<table border='0' style='background-color: transparent; color: white;'>
如果您想在页面中央显示表格,可以添加保证金:
<table border='0' style='background-color: transparent; color: white;margin:0 auto;'>
希望这会有所帮助:)