Post PHP Codes to wordpress using plugin PostPHP 

Here is simple wordpress plug-in for posting PHP Scripts in WordPress post called PostPHP.
Download : http://wordpress.org/extend/plugins/post-php/

I made this plug in for my personal use on chetanweb.com.Today I thought to make it public.

How to use it ??

Just add you php code in between tags <php></php> as you use HTML tags .

Example :

<php><?php

echo “Hello,World!”;

?>

</php>


Will Get


<?php

echo "Hello,World!";

?>


That’s It :D