..as in - simple for you. 🙂
Example data from "VehicleOptions" table:
ID |Interior
1 |Power Steering
2 |Power Windows
3 |Cruise
$VechOptions = "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15";
$OptionsQuery = "SELECT * FROM VehicleOptions WHERE ID IN ($VechOptions)";
$OptionsResult = $database->query($OptionsQuery);
$OptionsAll = $result->fetchRow(DB_FETCHMODE_ASSOC,$i);
$VechOptionsData = $OptionsAll['Interior'];
echo $VechOptionsData;
in tweaking this , sometimes I just get object. I'm not sure if I need to iterate or what here. Any help would be a lifesaver... Many Thanks!