Skip to content Skip to sidebar Skip to footer

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"