Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Sorry, but your question / post makes little sense. What is the question exactly?
  2. BS. Read your threads. They make little sense. Is English your native language? If not, I suggest you find a board that speaks your native language. If it is your native language, I'm calling troll. Keep up this line of posting and I will ban you for that very reason.
  3. Locked. This forum is for help with HTML.
  4. The problem you are having is that your posts are just rants. Most of which make little sense. Have you tried finding a board that speaks your native tongue? And maybe a forum where your posts might even be on subject with the rest of the forum. Here, you just sound like a mad man.
  5. I'm not sure where you get your information from. Delusions maybe?
  6. You should also stop smoking crack.
  7. What exactly are you looking to do with this markup?
  8. You do realise that using Javascript to do this means that users can simply bypass your checks?
  9. Don't try and force functions to use variables declared in the globals namespace, it defeats the a big part of there purpose.
  10. Talking about transactions taking times such as "half an hour", I suggest you find another protocol. Http really isn't cut out for what your doing.
  11. You don't need any regular expression, see json_decode.
  12. You doubt there is any performance issues? When PHP generates an error there are costs involved. Simply suppressing the error does not eliminate all of these costs.
  13. I'm not sure you understand the purpose of this forum.
  14. To access these parameters you would use the getParams() or getParam() method of the Request object.
  15. Why aren't you using a where clause in your initial select query in the first place?
  16. I follow the PSR-2 standard, so the closing ?> must be omitted.
  17. We can't really help much without seeing your code.
  18. nl2br appends <br> tags after newline characters so you do NOT wont to use it when displaying data in a textarea. Why don't you post your actual code?
  19. Have a look at your code. It doesn't make much sense.
  20. If they are programs that can be invoked via some form of shell you can use one of the exec family of functions. Otherwise, if they are written in C, you might like to turn them into PHP extensions (though this will be a fair bit more work).
  21. SELECT c.camp_title, c.camp_info, u.email FROM camp c LEFT JOIN users u ON (u.id = c.id_owner
×
×
  • 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.