0

我是新手,所以请温柔

例如,我想设置 $product_name、$author、$details 的样式。我想我可以设置回声的样式,但在这种情况下,唯一的回声是

<?php 
// Connect to the MySQL database  
include "storescripts/connect_mysql.php"; 
// This block grabs the whole list for viewing
$dynamicList = "";
$sql = mysql_query("SELECT * FROM products ORDER BY id DESC");
$productCount = mysql_num_rows($sql); // count the output amount
if ($productCount > 0) {
    while($row = mysql_fetch_array($sql)){ 
             $id = $row["id"];
             $product_name = $row["product_name"];
             $author = $row["author"];
             $details = $row["details"];
             $link = $row["link"];
             $isbn = $row["isbn"];
             $isbn13 = $row["isbn13"];
             $date_added = strftime("%b %d, %Y", strtotime($row["date_added"]));
             $dynamicList .= '<table width="580" border="0" cellspacing="0">
      <tr>
        <td width="120"><img src="/inventory_images/' . $id . '.jpg" width="120" height="184" border="0" /></td>
        <td width="456"><p>' . $product_name . '<p><br />
          <p>' . $author . '</span><br />
          <p>' . $details . '<br />
        <a href="product.php?' . $id . '">visa </a></td>
      </tr>
    </table>';
    }
} else {
    $dynamicList = "Database empty.";
}
mysql_close();
?>
4

5 回答 5

1

为什么不直接在样式表中添加 CSS 规则?

table tr td p {
// some styles
}
于 2013-07-07T17:03:45.977 回答
1

您是否尝试过在表格单元格中添加一些 CSS 类?

$dynamicList .= '
<table width="580" border="0" cellspacing="0">
  <tr>
    <td width="120"><img src="/inventory_images/' . $id . '.jpg" width="120" height="184" border="0" /></td>
    <td width="456"><p class="product_name">' . $product_name . '<p><br />
      <p class="author">' . $author . '</span><br />
      <p class="detail">' . $details . '<br />
    <a href="product.php?' . $id . '">visa </a></td>
  </tr>
</table>';

在头部添加一些样式:

<style>
  .product_name{color:red;}
  .author{color:green;}
  .detail{color:blue;}
</style>
于 2013-07-07T16:59:26.350 回答
0

您可以在<p>段落标签以及表格单元格上使用 style="" 和 class="" 参数<td>。我想您也可以尝试将样式<span><div>标签添加到您的变量中。

例如:

$product_name = "<span class='yourstyleclass'>$row['product_name']</span>";
于 2013-07-07T17:11:00.297 回答
0

PHP 只是一个预处理器,它会在页面加载时和 HTML 的任何 css 启动之前生成代码,因此您可以正常设置它的样式

于 2013-07-07T17:02:24.127 回答
0

您可以将具有样式的类添加到<p>包含每个值的元素

<td width="456"><p class="product-name">' . $product_name . '</p>...
于 2013-07-07T16:59:57.980 回答