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.

Hi I have a message box in my project if one have to check some message they have to enter the message link to check message instead ,I am thinking of showing a message in a popup box if the query where i am fetching the messages is not empty ,,(i,e) if there is any unread message in users account must,trigger a popupbox with message ,,,,There is a new message in your message box,,, Does this process needs backround threading , should we work with some othertechnology to be integrated with php to complete the process?

share|improve this question

1 Answer

up vote 1 down vote accepted

of the top of my head, albeit there is surely some norm/best practice for this, use a js loop that runs every 30 secs that fires an ajax request that queries the database. If there are some results, update the appropriate fields.

share|improve this answer
does it require any other technology to do so – udaya Jun 16 '10 at 12:31
i mean should we integrate any other technology with php – udaya Jun 16 '10 at 12:32
Start by reading about jQuery, a javascript library for the browser. It enjoys a large community base and is beeing used by many "Blue Chips". Specifically api.jquery.com/jQuery.post – Iraklis Jun 16 '10 at 12:42

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.