0

PHP ERROS DE INSERSÃO, DUVIDAS? o que tem de errado neste script?

criado por marcio beraldo em 09/06/2017 10:25pm

<html>
<head>
<title>Inserir Clube de vantagens</title>

<script src="js/tinymce.min.js"></script>
<script>
tinymce.init({selector:'textarea'});
</script>


</head>

<body bgcolor="#F8F8F8">


<form action="insert_clube.php" method="post" enctype="multipart/form-data">

<table align="center" width="795" border="1" bgcolor="#DDDDDD"

>

<tr align="center">
<td colspan="7" align="center" ><h2>Inserir Clube de Vantagens:</h2></td>
</tr>

<tr>
<td align="right" font-family="arial" >Selecione:</td>
<td><select type="text" name="clubedevantagens_categoria_title" >
<option>Selecione Opção</option>
<option value="assesoriajuridica" id="assesoriajuridica">Assesoria Juridica</option>
<option value="beleza" id="beleza">Beleza</option>
<option value="saude" id="saude">Saude</option>
<option value="servicos" id="servicos">Serviços</option>
<option value="lazer" id="lazer">Lazer</option>

</select>
</td>
</tr>

<tr>
<td align="right">Titulo:</td>
<td>
<input type="texto" name="clubedevantagens_title" ></td>

</tr>

<tr>
<td align="right">Imagem:</td>
<td><input type="file" name="clubedevantagens_imagem" /></td>
</tr>



<tr>
<td align="right">Texto:</td>
<td><textarea name="clubedevantagens_tex" cols="20" rows="10"></textarea></td>
</tr>
<tr>
<td align="right">Descriçao:</td>
<td><input type="text" name="clubedevantagens_des"/></td>
</tr>


<tr align="center">
<td colspan="7"><input type="submit" name="insert" value="Inserir Clube de vantagens"/></td>
</tr>

</table>


</form>


</body>
</html>
<?php
include("includes/db.php");

if(isset($_POST['insert'])){

//getting the text data from the fields
$clubedevantagens_categoria_title = $_POST['clubedevantagens_categoria_title'];
$clubedevantagens_title = $_POST['clubedevantagens_title'];
$clubedevantagens_tex = $_POST['clubedevantagens_tex'];
$clubedevantagens_des = $_POST['clubedevantagens_des'];


//getting the image from the field
$clubedevantagens_imagem = $_FILES['clubedevantagens_imagem']['name'];
$clubedevantagens_imagem_tmp = $_FILES['clubedevantagens_imagem']['tmp_name'];

move_uploaded_file($clubedevantagens_imagem_tmp,"Clube_vantagens/$clubedevantagens_imagem");

$insert_local = "insert into clubedevantagens (clubedevantagens_categoria_title, clubedevantagens_title,clubedevantagens_imagem, clubedevantagens_des, clubedevantagens_tex) values ( '$clubedevantagens_categoria_title','$clubedevantagens_title','$clubedevantagens_imagem','$clubedevantagens_des','$clubedevantagens_tex')";

$insert_lo = mysqli_query($con, $insert_local);

if($insert_lo){

echo "<script>alert('clube de vantagens inserido!')</script>";
echo "<script>window.open('index.php?view_clube','_self')</script>";

}
}








?>



Lista de Respostas:

Nenhuma resposta foi publicada ainda.

Nova Resposta:

(Você pode usar tags como <b>, <i> ou <code>. URLs serão convertidas para links automaticamente.)