I want to write a script of popup messanger . when i click the username and write some text and click on send message then popup winsow must be opened on that user systme. isit possible using php bcoz i m search in google but i didn't receive anything else. but reply me
chat witjh popup messanger
Collapse
X
-
Hey.
PHP is a server-side language. To bring up popup windows you need to use a client-side language, like JavaScript.
Assuming you are doing this via a website, through a browser, the easiest way to do this would be to have PHP store the message in a database on the server, and have JavaScript on the receivers browser periodically check the server for new messages, using AJAX. - Then when there is a new message you can add a notice or bring up a popup window or however you want to handle that.
Comment