I am using this statement to add information to a database
$sql = "INSERT INTO test1 (manufacturer, name, url) VALUES ('{$_POST['manufacturer']}','{$_POST['name']}', '{$_POST['url']}')";
var_dump($sql);
I would like to add http://webaddress.com/
before the $_POST['url']
. So if I enter in file name example it will go into the record as http://webaddress.com/example