Microsoft Announces that it will drop official support of PHP on Windows

Dale Hirt, the project manager for PHP inside Microsoft, announced this week on the PHP mailing list that Microsoft is no longer going to offer official support of PHP on Windows starting at v8:

No comments:

Write a program in PHP to reverse a number

A number can be written in reverse order. For example 12345 = 54321 <?php   $ num = 23456;   $ revnum = 0;   while ($ num > 1)   {   $...