Archive for July 2010
Getting Math Quest on top at Search Engine
Salam.
Today i am setting a target, to see whether my seo techniques still useful and can be applied
So the mission is simple, to get math quest to be place at top search engine result. Below are screenshot taken for few keywords that i have targeted for our Math Quest game.
Math Quest
Math Game
Math Education Game
These will be the proof of current positon. Let see how much time it takes to ranked up to the top..
How to include a user define class file in zend controller file
Disclaimer: This tutorial was taken from linked in, just for the sake of my reference.
Ramesh Chetipalli • To add user define class (or custom library) u can use zend framework’s autoloader namespaces.
Add the below line in application.ini file
autoloaderNamespaces.custom = “Custom_”
All the user defined classes will start ‘Custom_’ as prefix (e.g. Custom_Abc). The path for the file will be – /library/Custom/Abc.php
In the controller u can use – $abc = new Custom_Abc();



