Code Snippets

This is a collection of really useful and handy PHP code snippets. You can share your code snippet through "Post a snippet" page if you think it may be useful for others. We keep adding new snippets all the time !

Calculate percentages in PHPConnect to MySQL databaseConvert URL in textCopyright year updateCount lines in a fileDatabase connection using PDODetect browser with PHPDraw a table using PHPFile last modifiedFormat currencyGenerate random string with PHPGet file extensionHTTP Redirection in PHPJava Script Right Click Disable List files in a directoryMeasure page load timeRandom HTML colorRemove duplicate arrayremove last characterRemove special charactersSave text in a fileSeconds to String Send email with PHP mail()
Send email with PHP mail()
<?php 
$To = 'recepient@yourdomain.com';
$Subject = 'Send Email';
$Message = 'This example demonstrates how you can send plain text email with PHP';
$Headers = "From: sender@yourdomain.com rn" .
"Reply-To: sender@yourdomain.com rn" .
"Content-type: text/html; charset=UTF-8 rn";

mail($To, $Subject, $Message, $Headers);
?>
SEO friendly linksShow random imageValidate email addressValidate IP address
  • 1