Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. It is really not at all clear what your trying to do.
  2. Ajax is simply a http request. You can use curl to make a http request.
  3. " and ' are both quotes. If you look at the man page for the date function it tells you the the $format argument is expected to be a string.
  4. So fix it.
  5. Numbers aren't strings. They should not be surrounded by quotes.
  6. $menuqry="SELECT * FROM menu WHERE menu_access_lvl <= $lvl ORDER BY priority";
  7. Are you talking about php generated errors / warnings? Firstly, you should fix your code to prevent them happening in the first place. Secondly, you should have display_errors disabled on production servers.
  8. I'll give you a hint, take a look at date.
  9. Sorry but I would seriously consider getting a new hobby.
  10. They generally don't function without cookies. Though you can pass the session id around through the url. Generally though, people are aware that disabling cookies breaks there own user experience on the web.
  11. Have you tried actually writing some code? It's not rocket science.
  12. This whole idea smells bad. Why exactly are you updating some random row in the first place?
  13. Is ioncube installed? Do you have error reporting enabled?
  14. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=350859.0
  15. There are these things called computers these days, you should try one.
  16. What exactly are you referring to when you say a Splash page? This is normally some page tacked on to a website as an entry point. I can't say it has anything to do with PHP.
  17. Well repeated AyKay47.
  18. Your not echoing your data. <?php echo $info["Name"]; ?>
  19. $i = 1; $output = array(); while ($i <= $Quantity){ $output[] = rand($RandLow, $RandHigh); $i++; }
  20. I think your missing the point of a help forum. The idea is you write the code and ask us questions when your stuck.
  21. No it does not work on every server. You can configure it to be enabled or disabled, excepting php5.4 where it is now enabled by default and unable to be disabled.
  22. You can already add quite a bit of functionality to the Option object on the fly without needing to extend it. Though I do also plan on having a better look at how I can make extending classes within the framework allot simpler. I just haven't gotten there as yet.
  23. This topic has been moved to Editor Help (Dreamweaver, Zend, etc). http://www.phpfreaks.com/forums/index.php?topic=350792.0
  24. I ended up going with the second one and have just finished writing the documentation now. https://github.com/proem/proem/wiki/The-Opt-Component
  25. Did you read my previous reply?
×
×
  • 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.