include 'config.php';
?>
Learn Mathematics Online
$chapters = mysqli_query($link, "select `id`, `cname`, `cslug` from `js_chapters` where `publish`=1 order by `cname`") or die(mysqli_error($link)." at line ".__LINE__);
while($cn = mysqli_fetch_array($chapters))
{
echo ''.$cn[1].'
';
}
?>