Revolves

Innovation

Playing With Zend Framework 1.7

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 →]

→ 1 CommentTags:

Posting Source Codes In WordPress

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 →]

→ 2 CommentsTags:

PHP NetBeans – A Good and Free PHP IDE

November 30th, 2008 · Editors And IDEs

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 →]

Comments OffTags:·

Taking User Input Containing Spaces

November 30th, 2008 · C++, Programming

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 →]

→ 3 CommentsTags: