I have this select statement in my php application:
$result = mysqli_query($con,"SELECT * FROM apps WHERE device.DeviceName = $os ");
I'm trying to select all "apps" that have the device name of the variable "$os" all the apps are in one table with a device id, and the device table holds the device name...