All Entries Tagged With: "limit"
PHP Display Mysql Rows with Column Limit
This little script is very useful for having a set width of a table and displaying several rows organized in that table. It is easy to just display a table full of rows for all the data in a mysql table. Something like this: <?php $sql = mysql_query("SELECT * FROM table1"); if(mysql_num_rows($sql) > 0){ echo [...]
