December 3rd, 2008 · PHP
I downloaded Zend Framework 1.7 a few days ago. So far, it looks like a great framework, backed by a good company.
Previously, I learnt CakePHP 1.2 RC (I’m desparately waiting for 1.2 Final). CakePHP did have a good documentation, though lacking at some parts (especially the 1.2 version). But still, the usage for so simple that you could, by yourself figure out many things. Code logically fitted into places. [Read more →]
Tags:Zend Framework
November 30th, 2008 · Blogging
If you’re running some kind of a blog wherein you need to post source codes, snippets and stuff, you could run into problems. Now, this blog uses a plugin called SyntaxHighlighter. You can simply download and install the plugin as any other WordPress plugin, and you’re ready to post source codes.
[Read more →]
Tags:Posting Snippets
After a lot of searching for quite a few months, all of a sudden, I stumbled upon PHP Netbeans. I have not even cared to know when it was released, but I never came across it in my previous (maybe lacking?) searches.
[Read more →]
Tags:Netbeans·PHP
In c++, many a times, you’d want to take a string as an input. But the default cin statement cannot accept spaces, i.e. it terminates the input when it encounters a space. For eg, if you input ‘Hello World’, only ‘Hello’ would be stored and rest all discarded. To overcome this, we have a function called cin.getline().
[Read more →]
Tags: