RSS

Tag Archive | "PHP"

PHP : Optimizing

Thursday, September 25, 2008

1 Comment

So you have a huge site with multiple PHP Scripts and you get a load of traffic all of a sudden, when you built the site you didn’t figured 0.01 second load time was fine right? Well, say you get 5,000 visitors daily; that 0.01 can turn into 50 seconds!!! Don’t know how to benchmark [...]

Continue reading...

Sending Email through PHP scripts

Wednesday, July 9, 2008

8 Comments

Most Linux hosting doesn’t allow direct mail sending through PHP mail() function due to spam security issue. In order to send email through PHP mail() function, you need to be authenticate first by the SMTP server. Simplest way to do is to use the PHPMailer. Below is the sample php code using PHPMailer. <?php include(“class.phpmailer.php”); [...]

Continue reading...

Programing Cheat Sheets

Saturday, May 17, 2008

2 Comments

After learning a few programing languages it gets hard remembering all of the functions and properties that programing languages come with. Below is a list of Cheat sheets to make your coding experience much easier and faster. The list is categorized by languages.

Continue reading...