Jump to content

tampaphp

New Members
  • Posts

    7
  • Joined

  • Last visited

tampaphp's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Out of all four I would go with Laravel. They have a ton of tutorials at laracasts.com that make it really easy to learn. On another note, I would seriously consider looking into Yii2, before making a final decision
  2. If you want to go the Node.js route, checkout socket.io, they have demo of a live streaming chat on their homepage http://socket.io/demos/chat/ If you want to stick with PHP and jQuery, just create a setInterval script to update your chat box every 10 seconds or so. <div id="chatContainer"></div> <script> setInterval(function(){ $.post('getChat.php', postData, function(data){ $("#chatContainer").html(data.msg); }, 'json'); }, 10000); </script>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.