Function that inserts data into the bank

2

I have this little problem, no matter what I do, it does not work, it always gives "Invalid Query", could anyone help me?

   <?php
include('conexao.php');
include('fecha_conexao.php');

function inserir($coluna,$valor,$tabela){
    error_reporting (E_ALL & ~ E_NOTICE & ~ E_DEPRECATED);
    //perguntando se é um array
    if((is_array($coluna)) and (is_array($valor))){
        //perguntando se tem o mesmo número de elementos
        if(count($coluna) == count($valor)){
            //query de inserção no banco
            $inserir = "INSERT INTO {$tabela}(".implode(', ',$coluna).") VALUES('".implode('\', \'',$valor)."')";

            }else{
                return false;
                }

        }else{
            $inserir = "INSERT INTO {$tabela}({$coluna}) VALUES ('{$valor}')";
            }
            if($connect =connect()){
                if(mysql_query($inserir,$connect)){
                    fechaConexao($connect);
                    echo "Dados inseridos com sucesso";
                    return true;
                    }else{
                        echo"Query Inválida!";
                        return false;
                        }
                }else{
                    return false;
                    }
}
?>
    
asked by anonymous 04.04.2017 / 17:45

1 answer

0

Place your include ('date_connection.php'); at the end of PHP because it seems to me - as the name suggests - that it closes the connection and whatever comes in front will not run .

<?php
include('conexao.php');
function inserir($coluna,$valor,$tabela){
error_reporting (E_ALL & ~ E_NOTICE & ~ E_DEPRECATED);
//perguntando se é um array
if((is_array($coluna)) and (is_array($valor))){
    //perguntando se tem o mesmo número de elementos
    if(count($coluna) == count($valor)){
        //query de inserção no banco
        $inserir = "INSERT INTO {$tabela}(".implode(', ',$coluna).") VALUES('".implode('\', \'',$valor)."')";

        }else{
            return false;
            }

    }else{
        $inserir = "INSERT INTO {$tabela}({$coluna}) VALUES ('{$valor}')";
        }
        if($connect =connect()){
            if(mysql_query($inserir,$connect)){
                fechaConexao($connect);
                echo "Dados inseridos com sucesso";
                return true;
                }else{
                    echo"Query Inválida!";
                    return false;
                    }
            }else{
                return false;
                }
}

 //by djva 1/06 às 13:36
 //Não utilize um include para fechar uma conexão. É um desperdicio de memoria. 
 //Feche a conexão, claro mas, com um mysqli_close($conn);
 //include('fecha_conexao.php');
 mysqli_close($conn);
 ?>
    
04.04.2017 / 18:22