bubblenut has answered your question, but I was wondering if there is a reason for storing the [url]http://[/url] string along with the URI?
Might be better to just store the URI and then, when you pull the record from the database, append it using PHP:
$http = "h t t p://"
while ($row = mysql_fetch_array($result))
{
echo $http.$row['web_address'];
}
This would save you a little bit of storage space as your db grows, no?