• My PHP Pages

    This is a complete and free PHP programming course for beginners. Everything you need to get started is set out in section one below.

  • My PHP Pages

    This is a complete and free PHP programming course for beginners. Everything you need to get started is set out in section one below.

  • My PHP Pages

    This is a complete and free PHP programming course for beginners. Everything you need to get started is set out in section one below.

Sep 24, 2013

Posted by Unknown
3 comments | 12:51 AM
you can send emails using PHP. for send emails  we can use mail() php function. look at below example and change variable values to yours. this script is working with gmail too.. $to = 'yourmail@mail.com'; $subject = 'Your Subject Goes Here'; $message = ' Your Mail Body Goes Here... ! '; $headers = "From: " . strip_tags($_POST['req-email']) . "\r\n"; $headers .= "Reply-To: ". strip_tags($_POST['req-email']) . "\r\n"; $headers .=...

Read More..

Sep 22, 2013

Posted by Unknown
5 comments | 11:32 PM
                                                      You can use PHP ZIP function to make archives using PHP. I have create a PHP Class to zip all folders and files in a given directory you just need to add source directory and  destination path. Look at the code bellow... Copy bellow code and save it as...

Read More..

Sep 18, 2013

Posted by Unknown
1 comment | 3:05 AM
 For this you basically need two files one is class file and other one is the file that where you calling PDO connection. You can reduce rewriting connection using this OOP PDO script. This class returns after the execution. if connection established successfully it returns '1' else it return error description  Here is the Class. dbuser = $dbuser; $this->dbpass = $dbpass; $this->dbhost = $dbhost; $this->dbname = $dbname; ...

Read More..