-1

好的,所以我正在使用这个有效的 php 脚本,但我需要更改它,这是我的脚本。

<?php
$db_host = '127.0.0.1';
$db_user = 'root';
$db_pwd = '';

$database = 'hit';
$table = 'Data';

if (!mysql_connect($db_host, $db_user, $db_pwd))
die("Can't connect to database");

if (!mysql_select_db($database))
die("Can't select database");

// sending query
$result = mysql_query("SELECT * FROM {$table}");
if (!$result) {
die("Query to show fields from table failed");
} 

$fields_num = mysql_num_fields($result);

echo "<table border='1'><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);
?>

这可行,但我不需要显示我的第一个单元格

这是 mysql 列布局

EDITOR|PRODUCTCODE|PRICE|SIZE

我将添加更多列我不想显示的唯一列数据是编辑器,但我需要进入单元格的所有其他内容

另一个问题是我想在我的 php 页面上将单元格居中,就像它们放在屏幕左侧一样

有人可以帮忙吗

4

1 回答 1

1

Use

SELECT `PRODUCTCODE`, `PRICE`, `SIZE` FROM $table

As for displaying the output of the query, more details on the output might be needed from you.

于 2013-10-03T18:12:26.100 回答