0

我想将 mysql 获取结果显示为 2 个列。我在数据库中有记录Name,DescriptionPrice. 它返回为

Name
Des
Price

Name
Des
Price

但我想要的布局是这样的:

Name     Name
Des      Des
Price    Price

Name     Name
Des      Des
Price    Price

我的代码如下:

<?php
while($row=mysql_fetch_array($result))
{
?>
    <tr>
        <td><img src="<?php echo $row['picture']?>" /><br />
        <b><?php echo $row['name']?></b><br />
               <?php echo $row['description']?><br/>
                   Price:<big style="color:green">
                    Rs.<?php echo$row['price']?></big><br /><br />
                <input type="button" value="Add />
        </td>
    </tr>
    <tr><td colspan="2"><hr size="1" /></td>
<?php } ?>
4

1 回答 1

0

你可以使用这个功能

/**
 *@param array your array data
 *@param integer if 1 will wertical if > 1 will horizontal
 *@param integer count columns
 *@param integer amount of indentation
function drawTable($data, $type=1, $columns=10, $tabs=0)
{
    $tbl = null;

    if($tabs === false)
    {
        $tr = $td = null;
    }
    else
    {
        $tr = "\n".str_repeat("\t", $tabs);
        $td = $tr."\t";
    }

    if($type == 1)
    {
        $all_columns = array_chunk($data, ceil(count($data) / $columns));
        for($i = 0, $c = count($all_columns[0]); $i < $c; $i++)
        {
            $tbl .= $tr.'<tr>';

            for($si = 0; $si < $columns; $si++)
            {
                $tbl .= $td.'<td>'.(isset($all_columns[$si][$i]) ? $all_columns[$si][$i] : '&nbsp;').'</td>';
            }

            $tbl .= $tr.'</tr>';
        }
    }
    else
    {
        for($i = 0, $n = 1, $d = ceil(count($data) / $columns) * $columns; $i < $d; $i++, $n++)
        {
            if($n == 1)
                $tbl .= $tr.'<tr>';

            $tbl .= $td.'<td>'.(isset($data[$i]) ? $data[$i] : '&nbsp;').'</td>';

            if($n == $columns)
            {
                $n = 0;
                $tbl .= $tr.'</tr>';
            }
        }
    }

    if($tabs !== false)
        $tbl .= "\n";

    return $tbl;
}

如何使用

$data = array();
$query = mysql_query('Your sql query');
while($row = mysql_fetch_row($query))
{
    $data = array_merge($data, $row);
}

echo '<table>'.drawTable($data, 1, 2, 0).'</table>'; // Vertical output
于 2013-02-22T11:12:10.163 回答