You can add more field like :
<input name="randomtext2" type="text" id="randomtext2" /><br/><br/>
<input name="randomtext3" type="text" id="randomtext3" /><br/><br/>
<input name="randomtext4" type="text" id="randomtext4" /><br/><br/>
if(isset($_POST['randomtext2'])){
$text2_here = $_POST['randomtext2'];
}
if(isset($_POST['randomtext3'])){
$text3_here = $_POST['randomtext3'];
}
if(isset($_POST['randomtext4'])){
$text4_here = $_POST['randomtext4'];
}
mysql_query("INSERT INTO upload_test (text, text2, text3, text4, fileName) VALUES ('$text_here', '$text2_here', '$text3_here', '$text4_here','$file_name')") ;
You have to add in the database columns text2, text3, text4
too.