<?php
$db = mysql_connect("localhost", "root","");
mysql_select_db("learndb",$db);
$sql = "INSERT INTO personnel (Filename) VALUES ('$filename')";
$result = mysql_query($sql);
echo "Thank you! Information entered.\ n";
?>
Ok.. so i want this to be sent to a pre made database... i dont controll this server... how do i do this?