不确定我做错了什么。我知道有两个fetch_assoc
删除了第一个结果,但我没有这样的事情。
$sql = "$getdb
WHERE $tablenames.$pricename LIKE 'm9%'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo $tableformat;
while($row = $result->fetch_assoc()) {
$name = str_replace('m9', 'M9 Bayonet', $row['Name']);
include 'filename.php';
echo $dbtable;
}
我的连接文件:
$servername = "";
$username = "";
$dbname = "";
$password = "";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
require_once ('seo.php');
$dollar = '2.';
$euro = '1.9';
$tableformat = "<div class=\"CSSTableGenerator style=\"width:600px;height:150px;\"><table><tr><th>Name</th><th>Price</th><th><a class=\"tooltips\">Community<span>New !</span></a> </th><th>Cash Price</th><th>Trend </th><th>Picture </th></tr></div>";
$getdb = "SELECT utf.id, utf.PriceMin, utf.PriceMax, utf.Name, utf.Trend , community1s.price as com_price, utf.Name, utf.Trend
FROM utf
INNER JOIN (select id, avg(price) price from community1 group by id) as community1s
ON utf.id=community1s.id";
$tablenames = 'utf';
$pricename = 'Name';
$idrange = range(300,380);
会发生什么,它取出前两列很好,而行的其余部分不存在,并将其他结果推到一行,这会弄乱数据。
这是一张图片来展示: http://imgur.com/CQdnycW
seo.php文件只是一个SEO功能。
关于可能导致此问题的任何想法?
编辑:
我的输出:
echo $tableformat;
while($row = $result->fetch_assoc()) {
$name = str_replace('m9', 'M9 Bayonet', $row['Name']);
include 'filename.php';
echo $dbtable;
编辑:通过移动我的变量来解决它。标记为已解决。
答案 0 :(得分:0)
我发现了这个问题。做输出的一些变量处于不利的地方。重新安排他们,现在他们没事。
答案 1 :(得分:0)
您的HTML已损坏,破坏的表格中会发生奇怪的事情。 $tableformat
包含用于打开<div>
和<table>
的HTML,但会在表仍然打开的情况下关闭<div>
。
修复损坏的HTML,你可能会发现一切都很好