Wordpress

What is WordPress

WordPress is a free, open-source content management system (CMS) used for building and managing websites. It was first released in 2003 and since then it has become one of the most popular website-building platforms in the world, with over 40% of websites on the internet powered by WordPress. One of

Read More...

PHP

PHP reverse a number

PHP program to print a number in reverse order <?php $num=123456789; // Give the number which you want to print in reverse order echo $num; echo “<br>”; $revnum=0; do{ $revnum=($revnum *10)+($num % 10); $num=(int)($num / 10 ); }while($num>0); echo $revnum; ?>

Read More...