Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=358887.0
  2. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=358860.0
  3. You need to check the error logs to see what the issue might be. No idea where wamp would keep them though.
  4. What exactly is the problem?
  5. It's always a good idea to learn another framework. ps: HMVC is nothing more than hype.
  6. Why not try it and see?
  7. Try it and see.
  8. I'll spell it out then: $backtrace = var_export(debug_backtrace(), true); // some other code to write $backtrace to a file
  9. See exec.
  10. var_dump outputs to the output buffer (and returns nothing by the way), you want var_export instead.
  11. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=358861.0
  12. Strings require quotes in SQL. $sql = "SELECT [REF (SEDOL) No.] FROM [sTO_CORE] WHERE [REF (SEDOL) No.] = '$sedol'";
  13. The error message tells you exactly what variable is undefined.
  14. These types of errors are self explanatory. Your trying to use variables that haven't been defined.
  15. trq

    PHP/VB

    Why bother then? I don't think VbScript is used anymore by anyone.
  16. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=358821.0
  17. What are the *different* errors?
  18. You meen Javascript. You don't define ajaxRequest anywhere before trying to use like it's an object. This line: var ajaxRequest; // = remoteRequestObject(); Should be.... var ajaxRequest = remoteRequestObject();
  19. You forgot to tell us what the problem is.
  20. This topic has been moved to Other Libraries and Frameworks. http://www.phpfreaks.com/forums/index.php?topic=358786.0
  21. That is a Javascript error. Wrong board.
  22. That does not sound like it belongs in a single class. We seriously can't help without seeing code.
  23. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=358746.0
×
×
  • 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.