Would it be possible to incorporate a str_replace method with a regular expression, designed to catch url strings in a simple html < textfield > input type?<
str_replace
Check out preg_replace here, this is what you are lookin for.
preg_replace
// From the documentation. preg_replace($regularExpression, $replacement, $subject);