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!

link|improve this question
2  
Echo out the query string right before you call mysql_query. What does the query string look like when you try to access the page with the older device? – Adam Prax Jul 5 '11 at 22:57
I echoed the '$_GET['id']' and it returned null so I took a look at the browser URL and found it was capitalizing the letter following a '?' so when I was using '$_GET['id']' it was returning NULL ...did a simple check within php to see if id is "id" or "Id" and voila got it working. – Drew Jul 6 '11 at 0:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.