| Message |
Post subject: About Zend Platform Posted: Sun Jul 26, 2009 10:36 am |
|
|
About Zend Platform for i5/OS
Zend Platform is the only robust PHP production environment that ensures your applications run smoothly at all times.
Designed for IT personnel and businesses that require industrial-strength applications in highly reliable production environments, Zend Platform offers high performance and scalability to provide your customers with the best possible Web experience and response time.
Zend Platform uniquely guarantees application up time and reliability through enhanced PHP monitoring and immediate problem resolution ...
Read more : About Zend Platform | Views : 231 | Replies : 0
|
|
| Top |
 |
Post subject: Creating search engine friendly URLs in PHP pages Posted: Sun Jul 26, 2009 10:36 am |
|
|
See how to use .htaccess and mod_rewrite to easily transform ugly PHP URLs into search engine friendly ones.
The coming together of PHP and MySQL to create dynamic pages is a wonderful thing. Instead of having hundreds of separate webpages, your entire site can be stored inside a MySQL database, and then retrieved and displayed using a handful of "template" PHP pages. This makes updating the site extremely easy, though the draw back is often ...
Read more : Creating search engine friendly URLs in PHP pages | Views : 130 | Replies : 0
|
|
| Top |
 |
Post subject: About PHP Programming Posted: Sun Jul 26, 2009 10:34 am |
|
|
PHP is a language developed in the mid-1990s for producing dynamic web pages. It's used mostly for scripting on the server side, but it can also be used in standalone graphical applications or a command line interface. The main implementation of this language is produced by the PHP Group, and released under the PHP license. This implementation creates a standard for PHP, but there's no formal specification. PHP qualifies as free software – programs that ...
Read more : About PHP Programming | Views : 125 | Replies : 0
|
|
| Top |
 |
Post subject: Various PHP Programming Tricks Posted: Sun Jul 26, 2009 10:34 am |
|
Force a secure HTTP connection if (!($HTTPS == "on")) { header ("Location: https://$SERVER_NAME$php_SELF"); exit; }
Get the date $today = getdate(); $month = $today; $mday = $today; $year = $today;
Random Loading You can load random stuff by using this code. For this example, I load random color code: $selectnumber = rand (1, 5); if($selectnumber==1) $pagebg="#990000"; if($selectnumber==2) $pagebg="#0000FF"; if($selectnumber==3) $pagebg="#00AAAA"; if($selectnumber==4) $pagebg="#000099"; if($selectnumber==5) $pagebg="#DDDD00";
Easy Way to List Directory ...
Read more : Various PHP Programming Tricks | Views : 86 | Replies : 0
|
|
| Top |
 |
|
Last 10 active topics
|