I'm new to this and playing around with 1.3. I want to have a page that forces the user into a specified channel.
I thought perhaps something like this would work:
$params["channels"] = array($_GET["channel"]);
The problem is that it always defaults the user to the first channel created. For example:
- User 1 hits chat.php?channel=room_1. He is properly put in room_1.
- User 2 hits chat.php?channel=room_2. He is also put in room_1. Is there a way to just get him to automatically be put into whatever name is specified on the channel param?
Thanks!