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=306079.0
  2. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=306094.0
  3. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=306092.0
  4. We need to see where $start, $record_num & $per_page are defined and you'll need to define 'not working properly'.
  5. if (is_resource($this->connection)) { echo '$this->connection is a connection'; }
  6. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=306039.0
  7. We need to see relevant code in order to be able to help you. Can you provide that? Sounds to me like you need someone to take a look at the script, which is really a request that should go within our freelance board.
  8. You need to get a doctype and get your code valid before you can even start trying to fix it. Its not optional.
  9. You should start by at least validating your code. You have no doctype which does not help.
  10. Its likely your query is failing but your not checking to see. Most of your code should be within an if statement.... if ($result=mysql_query($query)) { // more code } else { trigger_error(mysql_error()); }
  11. Comment those parts out? Your questions doesn't exactly make allot of sense.
  12. $myFile = "newuser.txt"; $fh = fopen($myFile, 'r'); $theData = fread($fh, 55); fclose($fh); $pices=explode(' ', $theData); $id = array_pop($pices); $username = implode(' ', $pices);
  13. That is an explanation of what you want to do. You don't state your problem or ask any question.
  14. SELECT * FROM question, answer WHERE question.Question_id = answer.Question_id AND question.Question_id = 7 ORDER BY Answer_Date DESC LIMIT 100
  15. This topic has been moved to CSS Help. http://www.phpfreaks.com/forums/index.php?topic=306024.0
  16. Have you got a question?
  17. There is nothing inherently wrong with using a package such as xampp for production as long as you know what your doing. The problem is that most people who use such packages do so because they don't know what they are doing.
  18. trq

    Leaving

    I'm not sure how long it was up, I saw it and removed it. I still don't think it fits in freelance either. I guess that is something the staff should talk about, but I'm not having the conversation here. You could go on about it or just move on with your day. Its up to you, but Ive had enough.
  19. trq

    Leaving

    The one reply to your thread was someone posting links to more free 'comment' scripts. They left no feedback.
  20. trq

    Leaving

    C'mon. 'PHP Coding Help' is for help with specific issues. You post your problematic code, and people help you with it.If you have so much code you need help with that you need to provide a link, you need to break your problem into smaller parts and ask for help with those parts. You where blatantly asking people to join your project. I have nothing against advocating open software. I have used and developed it almost exclusively for the last 6 years or so. Still, there are times and places, a 'PHP Coding Help' board is not one of them. As has been said all along, if you where to contribute to our community you might get some slack cut. But starting your very first post with "I am currently developing a Free Software comment system (AGPL) in PHP, and I would love to have help if anyone is willing or interested."..... is blatant spam. Open software or whatever, I don't see a difference.
  21. trq

    cron job confirm

    59 * * * * /httpdocs/updateDB_QTY.php
  22. This topic has been moved to Linux. http://www.phpfreaks.com/forums/index.php?topic=305945.0
  23. trq

    cron job confirm

    That job will execute once a day at 1:59 am.
  24. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=305930.0
  25. of course you need to upload it first. Reading files on a client would be a massive security hole.
×
×
  • 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.