Brian Kenny Something worth sharing.

25Feb/100

PHP Mail Example

I keep forgetting to save this example so I'm sticking it here for future reference :)

<?php
$fromemail = "whoever@whatever.com";
$toemail = "towhoever@whatever.com";
$message = "Oh hai how are you";

mail( $toemail, "Your subject",
$message, "From: $fromemail" );
?>

1Feb/100

Mod_Rewrite Folder Name

Pain in the hole to do as it involves googling for a bit if your not a big Mod_Rewrite guru. So here's what I needed to do

Redirect www.bkenny.com/whatever/ to work correctly as a replacement for www.bkenny.com/ghgjgei/ or whatever

RewriteRule ^whatever(/)?$ /ghgjgei/ [R]

Change as needed.