Okay so, here’s what I’m trying to do… I’m trying to build a code to upload various files and images into the database, and its not working. Please also help with the select option I dont have an idea how to do this along with the admin login authorization. Thank You. Here’s my code:
[code][php]<?php
$as = mysql_connect(“localhost”,“root”,"") or die(mysql_error());
$bs = mysql_select_db(“form1”) or die(mysql_error());
if(isset($_POST[‘Submit3’])){
$upload_file = $_FILES[“file2”][“tmp_name”];
$des = $_FILES[“file2”][“name”];
$des1 =‘Files/’. $des;
if($_FILES[“file2”][“error”]>0)
{
echo “Apologies an error has occured.”;
echo “Error code:”.$_FILES[“file2”][“error”];
}
else
{
move_uploaded_file($upload_file,$des1);
}
$sql = “INSERT INTO notes(id, notes, notes_path) VALUES(’’,’$des’,’$des1’)”;
$qry = mysql_query($sql) or die(mysql_error());}
echo “Notes Inserted”;
?>[/php]
Kite Flames.com |
||||||||
|
||||||||
[/code]