PHP Code Won't Pull Database Information
My current program, for some reason, won't register my database values even though my previous code(looks identical but from different database tables) works just fine. So far I ha
Solution 1:
Try changing
$products = getAll($sql);
to
$products = getAll($sql,$values);
inside case 'products' :
Post a Comment for "PHP Code Won't Pull Database Information"