Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. I'm working on a bunch of stuff at the moment: At work: We are in the early stages of moving our servers (some 1300+) from freeBSD to GNU/Linux. So, yeah, working on a very customised Funtoo fork including an install CD (which currently Funtoo/Gentoo doesn't have). Development wise Iv'e been spending most of my time rewriting / upgrading large portions of our framework including our DAL and have also been implimenting some cool stuff on the front end using Backbone.js and Mootools (I'd rather be using jQuery, but whatever). Personal Stuff: I've been very slowly developing a site for lovers of experimental electronic music (one of my other hobbies) using Rails, Node.js and Backbone.js. I've been plugging away at this site for about the last 8 months, I'm still not sure I'll ever be happy enough with it to actually launch the thing. I'm just starting to get some traction pushing packages to Funtoo/Gentoo. And yeah, still (when I get time) playing around with my own PHP MVC, though I havent made a commit in about a month.
  2. Netbeans does much the same. Hold down shift and click a function / method and it will open the file it is declared in at the line it is declared on.
  3. The function CheckAge obviously doesn't exist. Have you defined it somewhere?
  4. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=341571.0
  5. You will need to by a third party php extension such as IonCube.
  6. This topic has been moved to PHP Applications. http://www.phpfreaks.com/forums/index.php?topic=341714.0
  7. If that's you would like to do it then go ahead. Personally, I'm not even sure why you would need to create any directories for each user. Sounds ridiculous.
  8. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=341690.0
  9. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=341706.0
  10. Are the files not already on the server? Why would you need to upload them again?
  11. The first error is self explanatory, your missing the last argument to the method The second, it appear your referencing a property that doesn't exist and the third means that $this->ci->users isn't an object.
  12. I still don;t see any relevant code. Take a look at http://api.jquery.com/css/
  13. You don;t seem to have posted any relevant code. Where is your jQuery?
  14. The error tells you where the problem is. Line 19 of products.php Please, in the future, we have tags.
  15. Time to upgrade your hosting. There really isn't any decent php based solutions around. That's a good idea for a project.
  16. PHP, not likely. There aren't a great deal good php applications for this type of thing. If all your after is an issue tracker, wiki and code browser check out Redmine. It's written in rails but is easy to install.
  17. You could drag the variable in via the global keyword but this completely breaks the encapsulation provided by the function in the first place. In other words, if this is really what you want, don't use a function.
  18. You use == to compare values in php, not =
  19. Just add the WHERE clause.
  20. As has been said (and covered in the link I provided you) you will need to pass $q into the function. What part of that do you not understand?
  21. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=341598.0
  22. This means that both your tables have a column called ad_id. You should be able to do: SELECT ads.ad_id, ad_title, ad_photos FROM ads LEFT JOIN ad_photos USING (ad_id);
  23. And now you have introduced yet another non-existent variable into your function. You might want to take a look at functions.
  24. Sorry but nothing in your last reply made any sense.
×
×
  • 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.