Jump to content

ignace

Moderators
  • Posts

    6,457
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by ignace

  1. If you would have clicked on the link provided by NTSmarkv then you would see it would say: The register form is at: https://www.ups.com/one-to-one/register?sysid=myups&lang=en&langc=US&loc=en_US&returnto=https%3A%2F%2Fwww.ups.com%2Fupsdeveloperkit%3Floc%3Den_US%26rt1
  2. It's all explained in the registration procedure
  3. Zend converts path.href_base to: print $config->path->href_base; Can you give an example of how your application is designed and what you are exactly struggling with.
  4. http://lmgtfy.com?q=php+ups+integration
  5. Then, is it worth buying? This may be a good approach to convince prospects as to why it still may be a good idea to buy. Yes I actually almost never believe them, they are IMO almost always too optimistic and would lead to believe that their product changes lives, right! I only reckon symbols from famous companies that certify quality and have established trust among it's customers throughout the years. I for example don't buy any game magazine except Chief as apparently this is the only company left that has the balls to tell when a game sucks. Yes and I am most probably one of them. I just hate to know that someone, somewhere ripped me off with a product that accomplished nothing of what it said it would but I doubt I am the only one who hates to be ripped off even if it's only for a small amount. A baker for example won't just give me a bread just because I am a regular customer and I currently don't have the change on me.
  6. I think they invented Google for that
  7. I question our because I find it hard to believe you actually employ them. I believe the cheap look is due to the 3D-model in the top-right corner and the before mentioned shine. Yes I am very hard to convince I usually even do a lot of research to use as a case against anyone trying to sell me something. Those door salesmen already know they should bring their A-game. Your websites states that I only have to put in the text my copywriter gave me and the outputted text will lead directly to sales, then why doesn't your website? Wow sounds great. Something else that sounds great is that 55% of all statistics are made up Edit: I know that I am coming down on you hard but I believe you will benefit the most out of this experience
  8. PHP is just another programming language and even a very skilled programmer will only be able to deliver a half-baked product if he does not stick to any sort of planning. You'd better of learning a methodology like OOA&D that allows you to model your application regardless of programming language. Or if you don't want to shoot so high you can familiarize yourself with the webdesign process. For the actual code writing I can only advice you to know the ins-and-outs of your language. The Zend certified engineer exam is a good example of learning the ins-and-outs. I'm not saying you should take it, there are various websites on-line that discuss the exam in detail, some even provide you with questions that you can try to solve and verify afterwards with the correct answers. A thorough knowledge of the available functions and it's uses is also a must, extensive use of the manual will teach you that.
  9. I find that the website looks cheap and reminds me of those awful scam websites. For example: Why do I find that so hard to believe? Our?? Your website lacks trust and proof just like those products on TV that create a complete menu under 20 minutes. This lack of trust aids to disbelieving your technique actually works, because if your website can't make the sale? Then why would it on my website? The video on the homepage is annoying, let it load and play when I WANT it to.
  10. First of, it all depends on how you architect your application. If you for example would use the same approach as Zend recently, a Zend_Application object to wrap the entire application then there is no need for singleton's as your otherwise global variables are class members of Zend_Application and accessible through some sort of mechanism ($this->_getParam()). If Zend has taught me one thing then that's configuration-over-convention is really great and reduces hassle however the problem with Zend is that it has a serious lack of proper naming conventions among configuration options, you'll come across options like: camelCase, TitelCase, under_score. Altough ZendF2 is a great improvement due to it's backwards compatibility it will drag along ugly legacy code and I would have loved if ZendF2 would have underwent a re-write like Doctrine2 I've been thinking about writing my own framework using the configuration file as the starting point while adhering to configuration-over-convention. As to your original question it all depends in what ways you would like to use your configuration object. Zend for example uses it's Zend_Config object as an AbstractFactory leaving open options to extend it using various ways to load configuration files: ini, xml, csv, ..
  11. Notice his using of FOREACH, A FOR loop with an iterator would consume much more memory per iteration. This is just speculation if all those statistics have shown me one thing it is that it varies from case-to-case and php-version-to-php-version. Just use a for-loop starting at index 33 and runs up. Even if oni-kun's advice would apply in this case you would spare a few nano-seconds. Or make it a sure thing and benchmark it under various conditions to verify which solution actually eats the least amount of memory. Remember that you will need to perform this again whenever you modify your php settings
  12. Just use a VARCHAR field setup your HTML like: <input type="checkbox" name="attend[$id]" value="unexcused absence"> <input type="checkbox" name="attend[$id]" value="excused absence"> <input type="checkbox" name="attend[$id]" value="tardy"> <input type="checkbox" name="attend[$id]" value="on-time">
  13. Will throw an error as you wrote: null-undefined=resource
  14. I know feel like uploading a .php file and tell my browser .php is an image with the header image/jpeg Read: http://www.scanit.be/uploads/php-file-upload.pdf as your website (funnyhq.com) and now those that copied your code are in danger
  15. Got it! Found it here: http://stackoverflow.com/questions/1340467/adding-sub-domain-based-routes-in-zend-framework
  16. Is it possible to load a certain module using <module-name>.domain.com I have tried using CNAME's but that didn't work
  17. Hey guys, I heard about this new fangled thing called THE interwebs and want to check it out. Can you give me a list of the websites on 'the net', so i can surf them?? plzkthx I've got just the right surfboard for you, only $799.99
  18. 1. objects are always passed by reference 2. You may want to try: class Cart { private $items = array(); public function getSubtotal() { $subtotal = 0; foreach ($this->items as $item) $subtotal += $item->getSubtotal(); return $subtotal; } public function getTotal() { return $this->getSubtotal();//calculate tax, deduction for coupon code, .. } } class CartItem { private $product = null; private $quantity = 0; public function __construct(Product $c, $quantity) { $this->product = $c; $this->quantity = $quantity; } public function getSubtotal() { return $this->product->getPrice() * $quantity; } }
  19. ignace

    OOP Help

    GEEK, big difference. If you want to insult me at least get your naming right.
  20. Personally I prefer a glue framework instead of a full-stack framework
  21. You can't convert RGB to CMYK as your RGB values will be an approximation. This article discusses the subject and also gives you a solution that comes close to the actual CMYK values. http://developer.loftdigital.com/blog/cmyk-rgb-and-php
  22. For an editor I really recommend PhpStorm link in my sig as for the framework I would suggest Zend it taught me a lot and has great potential
  23. ignace

    OOP Help

    You can't be serious. You will lose a lot of clients if you pursue this. Server administrators for example buy motherboards which have 2 sockets which means they also will buy 2 CPU's. Not to mention gamers which now standard buy 2 GPU's for SLI/CrossFire.
  24. Quoting is simply guesswork, you can't tell someone it will take you x hours because it won't take you x hours, it will take you x + y hours where y is the number of hours your client suddenly realizes also they are gifted with a brain and (for the short span it will remain active) abuse it in various ways reducing you to a mouse cursor controlled by the client. So, if you told them it will take x hours they honestly believe it will remain x hours regardless of how many changes they propose. So a few pointers when you next time talk to your client: 1. http://theoatmeal.com/comics/design_hell 2. "never talk to an idiot, he'll drag you down to his level and beat you with experience." PS it's not always like that of course but it happens once in a while
  25. class ClassLoader { public function __construct() { spl_autoload_register(array($this, '__autoload')); } public function __autoload($class) { //logic } } class MyApplication { private $autoloader; public function __construct() { $this->autoloader = new ClassLoader(); } public function bootstrap() { //logic $this->registerParam('MyApplication', $this); $this->boot($this->getParams()); } } MyApplication wraps the entire application much like Zend_Application does, the advantage is that your otherwise global variables are now wrapped in an object which are accessible throughout your entire application and accessible through some mechanism in the Zend framework you would access the application object by using: $this->_getParam('bootstrap')->getApplication(); However to design your application in such a way will require a good deal of design pattern knowledge (GoF, Martin Fowler, Craig Larman, Eric Evans, ..)
×
×
  • 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.