Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. We use a cross between kanban and scrum at my work. All our work is prioritised to a degree further up the food chain before it even gets to us developers, but the kanban / scrum process allows us to prioritise it further once we have it in our sites. We've only really been working this way for probably the last 6-7 months though, but yeah, it has improved both quantity and quality imo.
  2. <?php if ($differencemonth <= 0 ){ print "Variance Month <font color=\"red\">£" . round($differencemonth) . "</font>"; } else { print "Variance Month <font color=\"000000\">£" . round($differencemonth) . "</font>"; }
  3. One great way to become a better programmer is to get involved with an open source project that maintains a good code base. You will learn a lot by trying to fix bugs in code that you may not necessarily have written. You will also get feedback from the rest of the community. Of course, you don't want to just pick any old project. It has to be something that you are interested in, and something that you yourself will use.
  4. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=360259.0
  5. Firstly, just to clarify, that is not a Json object. Json is Javascript, that is a PHP object (it may have been created from Json). Now, as for your question. What the hell is a sku and where exactly in your post can we see it?
  6. No it's not a bug. It's there so that you know when your lines are running to long.
  7. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=360243.0
  8. SELECT house+1 FROM tbl LEFT JOIN tbl t ON (t.house = tbl.house+1) WHERE t.house IS NULL LIMIT 1
  9. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=360207.0
  10. Have you tried actually using these classes / functions? Sorry, but they make little sense.
  11. I believe session cookies are legal too and can be used wether the user permits or not. I would however look further into that as well.
  12. Neither does posting here without examples or a link.
  13. Why exactly are you going to compile the data into XML? What format are you getting the data in in the first place?
  14. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=360152.0
  15. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=360107.0
  16. Surely this would be better done with Javascript.
  17. The statement is completely ridiculous, for numerous obvious reasons.
  18. Take a look at the link I provided.
  19. You cannot use the $_SESSION array until calling session_start(). What session class? But no, it can't.
  20. strtotime is generally used to covert a string to a date. However, your string is not your typical string representation. IS there a reason the formatting is so unusual and do you have any control over it?
  21. This topic has been moved to JavaScript Help. http://www.phpfreaks.com/forums/index.php?topic=360102.0
  22. You might want to describe your problem while your here.
×
×
  • 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.