Random Quote PHP Script
The script below displays a random string of text each time your page is loaded or refreshed. It is not the most fancy or flexible – but it is extremely simple and easy. This could prove useful if you are doing something with limited scope. <?php function randomQuote() { $quotes[] = '"Quote goes here"'; $quotes[] = '"Quote goes here"'; $quotes[] = '"Quote goes here"'; $quotes[] =...
Read MoreTest Your Server’s PHP Mail
Is your server’s PHP mail function enabled or disabled? Test it with this quick script. If you get an email, it works! <?php mail("username@domain.com", "Test Subject", "Test Message Body"); ?>
Read More