Home>Article>Backend Development> How to display multiple products in one line in php
php How to display multiple products in one line
php can be used to connect to the database to query products and output the display For users, but if you want to display multiple products in one row, you need to use css technology. The specific implementation is as follows:
1. First, the php code
query($sql); if ($result) { if ($result->num_rows>0) { echo ''; while ($rows = $result->fetch_array()) { print_r($rows); echo ''; }else{ echo '查询结果为空!'; }//end if() }else{ echo '查询失败!'; }//end if()'; echo ''.$rows['id'].''; echo ''; echo ''.$rows['name'].''; echo ''; }//end while() echo '
Note that there is an output div tag above, and it hasclass.
2. The following is the implementation of the css code
The following is the simulated database data
Note: For the flex layout involved, friends who want to learn can search for css tutorials on the php Chinese website.
Effect:
For more PHP related knowledge, please visitPHP Chinese website!
The above is the detailed content of How to display multiple products in one line in php. For more information, please follow other related articles on the PHP Chinese website!