I have a download script which offers download ota to blackberry devices. This script was functioning fine until I tried and older blackberry 8530 (OS5). The issue appears to be this line in my php download script:
//Query DB
$query = sprintf("SELECT * FROM downloadkeys WHERE uniqueid = '%s'",
mysql_real_escape_string($id, $link));
$result = mysql_query($query) or die(mysql_error());
// Write the result to an array
$row = mysql_fetch_array($result);
// Begin checking validity of the key
if (mysql_num_rows($result) == 0) {
When this is ran from a new BB 9700/9780 the php executes fine and the return for mysql_nuw_rows is 1, however on older devices it is returning 0.
I have checked and double check and triple checked that the ID im entering into the url is correct and no typos but still it returns a '0' on older devices....
Is there something I can do with my php or perhaps cater to these older devices?
Correct me if im wrong but PHP is server side and shouldn't have an effect on the device no? so if the query returned true with a newer device should it not return true with an older one aswell??
I am completely stumped and giving myself a headache over this!
If anyone has any input or suggestions please please please help me out, I have hit a brick wall!