alright, i messed with the script, and its still not working it dosent show the id, hence its not doing the query..... this is the new updated one:
<?php
// code that will be executed if the form has been submitted:
if ($submit) {
// connect to the database
require_once('dbconnect.php');
$conn = db_connect();
mysql_select_db("user_art");
$updir = "art/";
$finame = $_FILES['form_data']['name'];
$path = $updir.$finame;
move_uploaded_file($_FILES['form_data']['tmp_name'], $path)
or die('Could not move the file <br> ' . $_FILES['form_data']['error'] .' '); // Good to have error checking.
$descript = $_POST['form_description'];
$fisize = $_FILES['form_data']['size'];
$fitype = $_FILES['form_data']['type'];
$result = mysql_query("INSERT INTO user_art (description, path, filename, filesize, filetype)
VALUES ('" . $descript . "', '" . $path . "', '" . $finame . "', '" . $fisize . "', '" . $fitype . "')");
if($result) {
$id= mysql_insert_id();
print "<p>This file has the following Database ID: <b>$id</b>";
}
mysql_close();
} else {
// else show the form to submit new data:
?>
<form method="post" action="<?php echo $PHP_SELF; ?>" enctype="multipart/form-data">
File Description:<br>
<input type="text" name="form_description" size="40">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
<br>File to upload/store in database:<br>
<input type="file" name="form_data" size="40">
<p><input type="submit" name="submit" value="submit">
</form>
<?php
}
?>
now what is wrong?