Kamis, 26 Januari 2012

New version 3.8.1 of ApPHP MicroCMS was released





We are happy to announce that new update for ApPHP MicroCMS was released and available now for downloading.

PHP MicroCMS (PHP MCMS) is a simple, but very powerful Content Management System that everyone can use. This script can be installed easily by web developers, webmasters, graphic designers, etc. PHP MCMS was developed in OOP and allows you to build websites in a few minutes and then

Senin, 23 Januari 2012

New version 3.2.6 of ApPHP Tabs was released.





The new version 3.2.6 of ApPHP Tabs Pro (AJAX Enabled) is available for downloading from here.

The ApPHP Tabs is a simple PHP script that generates multilevel tab menu control which consists of nice-looking tabs. It may be useful for web developers who appreciate their time and do not want to waste it on boring work but instead focus on really challenging tasks. It takes you only few seconds

Sabtu, 21 Januari 2012

PHP Math functions Ceil and Floor

PHP has nice support for Mathematical processing. And for doing rounding off we generally need functions like ceil() and floor().

Lets see how to use these functions...

PHP ceil() Function

The ceil() function rounds the value "UPWARDS" to the nearest integer.

Check the code below


The output of the above code will be 1.

PHP floor() Function

The floor() function rounds off the value "DOWNWARDS" to the nearest integer.
Check the code below

The output of the above code will be 0.