prepare($sql); $stmt->bindValue(':start', $start, PDO::PARAM_INT); $stmt->bindValue(':per_page', $per_page, PDO::PARAM_INT); $stmt->execute(); $output_page = $stmt->fetchAll(PDO::FETCH_ASSOC); // Assign to Smarty $smarty->assign('output_page', $output_page); // Optional: site link for comments in template $site_link = 'https://votters.com'; // replace with your actual site URL $smarty->assign('site_link', $site_link); // Display the template $smarty->display('popular_lists.tpl'); // replace with your actual template file