Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Post your problematic code and a description of what is problematic.
  2. You only need ..... $message = $_POST['message']; To set $message to your forms value. The only possible way your code was previously working was because you had the form() function defined somewhere. It's likely some validation or cleansing function you got from somewhere.
  3. Exactly right. Your executing a function called 'form', yet it's not defined anywhere. In this piece of code..... $message = form($_POST['message']); what exactly do you expect form() to do? It's not a php function.
  4. ffmpeg is a pecl extension and should be installed via pecl's command line utility.
  5. Where is the function form() defined?
  6. Simply using classes is NOT OOP, especially when they (like this one) add little value to the design.
  7. There is actually a few mods on the SMF site that I think can be used. I just need the time at the moment.
  8. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=325896.0
  9. What exactly do you mean? Local and master? Again, what do you mean?
  10. PHP executes server side, what you seem to be hinting at sounds client side.
  11. get_settings() is not a static method, why are you calling it as if it where?
  12. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=325858.0
  13. Ajax is no different, you make get or post requests.
  14. You can't. What does the response contain?
  15. Maybe you haven't set the length argument to be long enough.
  16. No, this doesn't mean anything, we would need to see code.
  17. There is a book in my signature (Hudzilla) that has an entire chapter dedicated to using forms with php, you should take a look there.
  18. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=325762.0
  19. This isn't a code repository, it's a help forum, where are you stuck?
  20. As noted here: http://www.phpfreaks.com/forums/index.php?topic=325648.0 the board has been upgraded. This was a custom mod and needs to be rebuilt. I'm going to look into it (and a few other things) after I finish work tonight.
  21. public function methodClassName() { return new ClassB; } }
  22. I think you'll find it is missing. the forums have been upgraded and that was a custom mod which needs to be fixed.
  23. Mysql has built in methods for creating and then importing database dumps.
×
×
  • 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.