Category Archives: Tutorials

Useful tutorials

dynamic database based routing with codeigniter

Ever wanted to generate routing from database with codeigniter? I had to for one of my recent project. Here goes the detailed instruction on doing it. Extend the Router class. Create new file My_Router.php in your application libraries folder with … Continue reading

Posted in Tutorials, codeigniter | 4 Comments

Using phpQuery with codeigniter

phpQuery is very useful for server based DOM manipulation. Where jquery is famous for client side Dom manipulation and traversing. Here comes phpQuery based on jquery for server Dom manipulation. Recently i needed to use phpQuery in one of my … Continue reading

Posted in Tutorials, codeigniter | Tagged | Leave a comment

using youtube api to upload videos from your site

I wanted to create a video site but lacked the server resources to run it, I am using a shared server, it has ffmpeg but when converting a video it takes lot’s of system resources. I successfully made the fmpeg … Continue reading

Posted in Tutorials, Uncategorized, api, google, php, phpizabi, socialnetwork | Tagged | Leave a comment

Getting stock information from yahoo.

Here is a function to get stock quote information from yahoo: function getquote($symbol) { if (empty($symbol)) { $symbol = '^dji'; } $fields = 'sl1d1t1c1ohgv'; // we use yahoo to get the quotes //http://download.finance.yahoo.com/d/quotes.csv?s=%5EDJI&f=sl1d1t1c1ohgv&e=.csv $host = 'http://download.finance.yahoo.com'; // construct the url … Continue reading

Posted in Tutorials, php | Leave a comment

Storing your session to database in php

I am developing a custom solutions for my projects. I was finding solution to secure my php applications. As security is top concerned when I develop my applications. I had to develop a solution for a shared hosting environment and … Continue reading

Posted in Tutorials, php | Tagged , , | 1 Comment

Best tutorials site for web development

Today I am going to post some of the best available tutorial sites for web development and designing. 1. www.tizag.com I find this site very useful for starter. It has tutorials on html, css, javascript, php, asp, xml, mysql etc. … Continue reading

Posted in Tutorials | Tagged , , , , | Leave a comment

Tcpdf a pdf generating php class

I needed to generate a pdf dynamically from the website for one of my project. On my search for a good library i came across TCPDF . It is a Free Libre Open Source Software (FLOSS). You can see more … Continue reading

Posted in Tutorials | Tagged , | 24 Comments

Send sms to meromobile for free script

YOu might have seen some websites offering sms to meromobile for free. Ever windered how they did it. Ever wanted to use it in your website but didn’t knew how to, here is a quick tutorial for you to get … Continue reading

Posted in Tutorials | Tagged | 17 Comments