`
how do i change from msql to msqli the below statement, am learning this mysql but keep getting Deprecated error.
And where can one get an easy tutorial on how to make the changes.
thanx
$displayImages = "";
if($_GET['cat'] == "juice")
$sqlSelProd = mysql_query("select * from tblproduct where prod_cat = '$_GET[cat]'") or die(mysql_error());
else if($_GET['cat'] == "junkfood")..............
`