I am developing a multi-user chatting system in php. I know about push and pull, reverse ajax, comet etc. but mostly we have to configure over our server.
However, I can't access my server to install those scripts because I have shared hosting provider.
So after some research I came to know that pusher, pubnub provides api to have push data on browser.
The question is about pubnub, that they are providing channels to send data to clients, but problem is I want to develop multi-user chat in which the data will sent to only one user not like multicasting chat.
As I think one solution is that to make a unique channel per user, so that data will only sent to that user, but this doesn't seems to be efficient. so any other way to implement multi-user chat system with pubnub ?
or any other suggestions that are better ?