I want to insert the image into the site by type="file" it resizes to 400x300, I tried everything but I can not.
Image verification code to send to BD and insert into website:
require_once("conn.php");
$imgm=$_FILES['imageM'];
$imgf=$_FILES['imageF'];
$destinoM = 'img/mini/';
$tipoM = $imgm["type"];
$sizeM = $imgm["size"];
$tempM = $imgm["tmp_name"];
$extM = end(explode(".",$imgm["name"]));
$nomeM = "mini_" . "_" . rand(0,99999) . date("zdmYHisu") . "." . $extM;
echo $destinoM . "<br />" . $tipoM . "<br />" . $sizeM . "<br />" . $tempM . "<br />" . $extM . "<br />" . $nomeM;
if (preg_match("/^image\/(gif|jpeg|jpg|png)$/",$tipoM)){
$caminhoM = $destinoM . $nomeM;
move_uploaded_file($tempM,$caminhoM);
}
$query = "INSERT INTO 'TABELAPT' ('nome', 'tipo', 'desc', 'menu', 'imageM', 'imageF') VALUES ('".$nome."', '".$tipo."', '".$desc."', '".$menu."', '".$nomeM."', '".$nomeF."')";
// Executa a query
$inserir = mysql_query($query);
if ($inserir) {
echo "Post inserido com sucesso!";
} else {
echo "Não foi possível inserir o Post, tente novamente.";
// Exibe dados sobre o erro:
echo "Dados sobre o erro:" . mysql_error();
}