Jump to content
GIGN Forum

Move And Insert


DST
 Share

Recommended Posts

Problēma ir tāda iepriekšējo reiz šitas viss gāja tgt ņifiga bildi uploado bet neinserto

<?php
$uploaddir = './uploads/'; 
$file = $uploaddir . basename($_FILES['uploadfile']['name']); 
$size=$_FILES['uploadfile']['size'];
if($size>1048576)
{
    echo "error file size > 1 MB";
    unlink($_FILES['uploadfile']['tmp_name']);
    exit;
}

if (move_uploaded_file($_FILES['uploadfile']['tmp_name'], $file)) { 
mysql_query('INSERT INTO `minigame`.`mg_albums_images` (`bilde`, `album_id`, `dir`) VALUES (\'$file\', \'asfsdf\', \'asdfsdf\')') or die(mysql_error()); 
} else {
    echo "error ".$_FILES['uploadfile']['error']." --- ".$_FILES['uploadfile']['tmp_name']." %%% ".$file."($size)";
}
?>

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...