WHiTNEY

You know my name. I'm 17, livin' it up in Idaho. Watch my Tumblr fill up with posts and you'll start to know me.

Facebook!

I’m going to cry!

// Check the URL.
if (eregi (‘^((http|https|ftp)://) ([[:alnum:]-.])+(.)([[:alnum:]]) {2,4}([[:alnum:]/+=%&_.~?-]*)$’, stripslashes(trim($_POST[‘url’])))) {
$url = eregi_replace (‘^((http|https|ftp)://)([[:alnum:]-.])+(.)([[:alnum:]]){2,4}([[:alnum:]/+=%&_.~?-]*)$’, ‘<a href=”\0”>\0</a>’, stripslashes(trim($_POST[‘url’])));
} elseif (eregi (‘^([[:alnum:]-.])+(.)([[:alnum:]/+=%&_.~?-]*)$’, stripslashes(trim($_POST[‘url’])))) {
$url = eregi_replace (‘^([[:alnum:]-.])+(.)([[:alnum:]]){2,4}([[:alnum:]/+=%&_.~?-]*)$’, ‘<a href=”http://\0”>\0</a>’, stripslashes(trim($_POST[‘url’])));
} else {
$problem = TRUE;
$message .= ‘<p>Please enter a valid URL.</p>’;
}