Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

FQL statement has executed and array object has been passed to $fqlResult successfully.

However, I'm unable to write name into my <span> through innerHTML. Neither exceptions nor errors have occurred. Other columns from the table such as latitude, longitude, page_id, checkin_count are able to write into respective <span> correctly. Only name is giving me problem.

May I know what is preventing me from writing name into my <span>?

FQL Place Documentation

FQL Statement

SELECT page_id,name,latitude,longitude,checkin_count 
FROM place 
WHERE distance(latitude, longitude,"1.2894680406278", "103.86311775635") < 200 
ORDER BY checkin_count DESC 

Results from print_r($fqlResult) appears to be consistent with results from Graph API Explorer.

HTML

<b>Page Name: </b> <span id="fName"></span>
<b>Latitude: </b> <span id="fLatitude"></span>
<b>Longitude: </b> <span id="fLongitude"></span>

Observation

JavaScript Setup 1 (Blockage)

document.getElementById('fName').innerHTML = <?=$fqlResult[0]['name']?>;
document.getElementById('fLatitude').innerHTML = <?=$fqlResult[0]['latitude']?>;
document.getElementById('fLongitude').innerHTML = <?=$fqlResult[0]['longitude']?>;

//Output
No. of Facebook Checkins: 
Latitude: 
Longitude:

JavaScript Setup 2 (No blockage - Okay)

document.getElementById('fLatitude').innerHTML = <?=$fqlResult[0]['latitude']?>;
document.getElementById('fLongitude').innerHTML = <?=$fqlResult[0]['longitude']?>;

//Output
No. of Facebook Checkins: 
Latitude: 1.2894680406278
Longitude: 103.86311775635 
share|improve this question

1 Answer

up vote 1 down vote accepted

Latitude and logitude are numbers, so no problem there.

But name is a string (a.k.a. text literal), and what did you forget to put around the value in your JavaScript code …? Exactly, string delimiters.

You should really learn how to work with your browser’s error console …!

share|improve this answer
Ahhh I see, no wonder. Thank you very much =) – Zany Jun 26 '12 at 16:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.