Simple PHP pagination example using MySql database

<?php $num_rec_per_page=10; mysql_connect('localhost','root',''); mysql_select_db('apex1'); if (isset($_GET["page"])) { $page  = $_GET["page"]; } else { $page=1; }; $start_from = ($page-1) * $num_rec_per_page; $sql = "SELECT * FROM student LIMIT $start_from, $num_rec_per_page"; $rs_result…

WordPress Template Hierarchy

The Template Hierarchy In Detail # While the template hierarchy is easier to understand as a diagram, the following sections describe the order in which template files are called by WordPress…

Magento. Display new products on the home page (block)

Open Magento admin panel Go to CMS>Pages>Home page Switch to the content tab Insert the following code: {{block  type="catalog/product_new" column_count="6"  products_count="12" name="home.catalog.product.new"  alias="product_homepage"  template="catalog/product/list.phtml"}} Where: column_count="6" – number of the…