Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. You should be developing with error reporting on so that you can spot these issues early on.
  2. Don't bump old threads and don't self promote.
  3. There is one - http://forums.phpfreaks.com/page/tutorials - they're talking about members being able to post tutorials.
  4. Buying a house is on my list for this year, hopefully it won't be on the next one too...
  5. Please use the code tags in the future.
  6. Please use the code tags around your code in the future.
  7. As ignace said, start with small things, you don't want to overwhelm yourself. Pick a concept, technique, or technology and learn it. Then you can learn how they work together. For some ideas, here's a list of easy to hard projects: http://forums.phpfreaks.com/topic/262327-bored-looking-for-ideas-heres-a-list/
  8. Looks like the 'm' alias was never even defined. FROM months m
  9. Post line 84, like josh said, there's probably something wrong with your include.
  10. What exactly are you trying to do? In jQuery you can bind events/methods.
  11. Maq

    Error

    We need to see some code.
  12. Probably your code is wrong.
  13. Locking this. I'll have to always include a forward link to the moved topic.
  14. Check out - http://php.net/manual/en/function.substr.php and its related methods.
  15. Your PHP structure is a bit messy but essentially what you want to do is make an AJAX call to the script that grabs the latest set of entries from your shouts table. This snippet requires JQuery and will probably populate your chat more than you want but at least you'll get the idea: function refreshChat(){ var url = './your-php-script.php'; //Pass in whatever parameters you need here $.ajax({ type: 'POST', url: url, success: function(data){ $('div#chat').replaceWith(data); } }); }
  16. Where are you "refreshing" from? If you're storing the chat messages on the server then you need to make an ajax call in your refreshDiv() function and replace the chat with the new content. If not, then you need to elaborate.
  17. What do you mean "for web developers"? Are you going to be testing on it or what?
  18. Welcome jcbones, for some reason I already thought you were a guru.
×
×
  • 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.