Rss Reader plugin

by admin on April 3, 2010

Rss Reader plugin : – You can read the rss of other sites rss and you can show that rss on your site.

Downlaod : Click Here

== Installation ==

1. Upload `rss-reader` to the `/wp-content/plugins/` directory
2. Activate the plugin through the ‘Plugins’ menu in WordPress
3. Paste this Line where you want show RSS <?php if ( function_exists(‘rss_reader’) ) {    rss_reader();}    ?>
4. Please Don’t use this code the Loop Ex.<?php while (have_posts()) : the_post(); ?>
5. You can Set your doman through admin panle (Settings->Rss Reader)
6. Set Your No Link

Snap Shot

{ 2 comments }

chr — Return a specific character

by admin on March 18, 2010

string chr ( int $ascii )

Returns a one-character string containing the character specified by ascii .

<?php
$str .= chr(65);
echo $str; //A
?>

{ 0 comments }

addslashes — Quote string with slashes

by admin on February 13, 2010

string addslashes ( string $str )
Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote (), double quote (), backslash (\) and NUL (the NULL byte).
Example:

<?php
$string = "My name is 'Jack Smit'";
// Outputs:
My name is \'Jack Smit\'
echo addslashes($string );
?>

{ 0 comments }

strlen – Get string length

by admin on February 7, 2010

How Can count the length of String in php

int strlen ( string $string )
Returns the length of the given string

Example:
<?php
$string1='Hello';
$string2='Hello World";
echo strlen($string1); //5
echo strlen($string2); //11
?>

{ 0 comments }

About C

by admin on February 5, 2010

C  is a programming lanugage developed at AT & T’s Bell laboratories of usa in 1972.

It was designed and writeen by a man named Dennis Ritchie.

C is called Meddle level language.