WideImage and Mysql and PHP

0

Good morning! So I have a boring problem here.

$nome_produto       = $_POST['nome'];
$valor_produto      = moeda_mysql($_POST['valor']);
$categoria_produto  = $_POST['categoria'];
$descricao_produto  = $_POST['descricao'];
$estoque_produto    = $_POST['estoque'];

$sql = "INSERT INTO 'produtos' 
('id', 'nome', 'descricao', 'valor', 'id_categorias', 'estoque') 
VALUES 
    (NULL, 
    '$nome_produto', 
    '$descricao_produto', 
    '$valor_produto', 
    '$categoria_produto',
    '$estoque_produto')";

$query      = log_mysqli_query($a, $sql);
$id_produto = mysqli_insert_id($a);

if($query) {

// Diretório de Upload de Imagens 
$diretorio      = 'imagens/produtos/';  

require_once 'wideimage/WideImage.php';

// Nome temporário de upload
$tmp_name = $_FILES['imagem']['tmp_name'];

// Carrega a imagem a ser manipulada                
$image = WideImage::load($tmp_name);
$image = $image->resize(300, 300);

// Nome
$imagem = $diretorio.$id_produto.".".$extencao;
// Salva imagem
$image->saveToFile($imagem);


$sql = "UPDATE 'produtos' SET
        'foto_nome' = '$imagem'
        WHERE 'id' = '$id_produto'";

$query = log_mysqli_query($a, $sql);

I run the script without require_once, require, include, have already tested all of these, from WideImage, and run normally, saved in the DB. I need to upload and resize, I want to send the file direct from temp to Wide, do the resizing and then save to the server. It does not work out the way it is there, and I can not see the error. ¬¬

Thank you in advance

    
asked by anonymous 08.02.2016 / 10:00

0 answers