Blogroll
Categories
- api (1)
- codeigniter (3)
- google (4)
- linux (2)
- mobile (1)
- php (11)
- phpizabi (11)
- site review (5)
- socialnetwork (3)
- Tutorials (8)
- Uncategorized (19)
- webserver (1)
- wordpress (3)
- wordpress plugin (1)
Archives
- June 2010 (4)
- May 2010 (3)
- March 2010 (5)
- February 2010 (1)
- October 2009 (1)
- September 2009 (1)
- August 2009 (1)
- June 2009 (1)
- April 2009 (2)
- March 2009 (2)
- February 2009 (2)
- January 2009 (7)
- December 2008 (3)
- November 2008 (2)
- September 2008 (5)
- August 2008 (2)
- July 2008 (2)
- June 2008 (4)
- May 2008 (4)
- December 2007 (3)
- November 2007 (5)
- October 2007 (1)
Tags
Category Archives: 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
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 youtube api
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
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 php, Tutorials, web designing, web development, web languages
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
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