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 MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=331758.0
  2. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=331803.0
  3. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=331786.0
  4. It is the only way I know of to achieve the effect. Your data needs something to be displayed in.
  5. What exactly do you plan on displaying it within? Your question really makes little sense I'm afraid.
  6. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=331354.0
  7. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=331655.0
  8. UPDATE vtp_members SET hits=(hits + $random_number)+100
  9. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=331552.0
  10. This topic has been moved to Other Web Server Software. http://www.phpfreaks.com/forums/index.php?topic=331514.0
  11. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=331507.0
  12. Most editors Ive used have this functionality. Vim being the prominent one but IDE's such as Netbeans can do the same.
  13. Nope. It is a simple operator designed to assign values to array keys.
  14. If the classes are unrelated (which they are) they are unrelated, it really is that simple.
  15. The first question I have is why on earth would your autoloader extend an Exception class? Your autoloader is *NOT* a type of Exception.
  16. @hyster Greater than or equal to is represented by >= not =>
  17. Generally speaking sessions require cookies. You can configure PHP to pass your session data through the url but it is generally avoided these days and is switched off by default.
  18. This is because your using an onClick event within your markup to register a click event through jQuery. In other words, your toggleEdit function is only executed when you click an item, this then attaches click events to the rest of the items and waits for the next click. onClick() events and mixing Javascript amongst your markup are a thing of the past since jQuery and other frameworks now allow you to easily attach events to code without them. This concept should be covered in any 'beginner' jQuery tutorials. It really is one of the fundamentals of the framework.
  19. echo $concertDates['201105072'];
  20. && has a higher precedence than AND so they both have there place.
  21. The keyword 'AND' is a perfectly legitimate PHP operator.
  22. Considering there is no programming logic available within simple markup languages like HTML your going to need to be allot more specific in your question.
×
×
  • 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.