Home » SEO

Hi friends, In this post i would like to explain about how to maintain dynamic meta description for a wordpress blog. No need to add any plugins to maintain meta description. Using this method, we can have meta description how to add dynamic meta description for wordpress blog | Anil Labs

 

In this post i would like to build a Simple Steps to Build a Custom CMS application Using PHP and Mysql. We will pulling data ( content ) from mysql and displayed in the nice formated way to display in the front-end section. And Content is manageble by admin section by WYSIWYG editor. Simple Steps to Build a Custom CMS application Using PHP | Anil Labs

 

April 17, 2011

PHP Header Examples

Hi friends, In this post i would like to share my knoweldge about redirection , 404 ( Page not found error message) ,service not avialable(503), CSS , Javascript , For the images and application type ( PDF ,…). For above requirements we can use php headers to solve the issues. PHP Header Examples (301,302,404,CSS,Javascript, Images ...) - Anil...

 

In this post i want to explain how to create rss feeds using php code and get the data from mysql table. It is very simple to develop and use.   Step 1 : Connect to database   We already discussed about how to connect database using php code.See the following code to connect database: Code 12345678910<?php DEFINE ('DB_USER', 'root'); DEFINE...
Filed in: mysql, PHP Code, SEO

 

The following php code will generate the tiny urls <?php   function getTinyUrl($url) { $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url={$url}"); return $tinyurl; }   $url="http://www.anil2u.info"; echo getTinyUrl($url);   // gives the output is  http://tinyurl.com/lj4noe ?> This...
Filed in: PHP Code, SEO