Revolves

Innovation

Entries Tagged as 'Programming'

An Update On My Zend Framework 1.7 Experience

December 7th, 2008 · No Comments · PHP, Programming

I’ve fiddled with Zend Framework a bit, and even developed a simple MVC application structure, i.e. just the bare bones. Looking at my code, I though, initializing so many classes, is this Framework efficient?

[Read more →]

Tags:

Playing With Zend Framework 1.7

December 3rd, 2008 · 1 Comment · 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 [...]

[Read more →]

Tags:

Taking User Input Containing Spaces

November 30th, 2008 · 3 Comments · 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 [...]

[Read more →]

Tags: