3
Look at my code:
HTML:
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/criaEvento.js"></script>
<form method="post">
<table width="420" align="center">
<tr>
<td>Nome</td>
<td colspan="3"><input class="form-control" type="text" name="nomeEvento" placeholder="exemplo: Festa no ap" size="30"></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td>Detalhes
<td colspan="3"><textarea class="form-control" name="maisInfos" placeholder="informais adicionais" rows="3" cols="33"></textarea></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td>Onde</td>
<td colspan="3"><input class="form-control" type="text" name="onde" placeholder="local" size="30"></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td>Quando</td>
<td><input id="dia" type="date" name="dia"></td>
<td>Horário</td>
<td><input id="hora" type="time" name="hora"></td>
</tr>
<tr>
<td height="10"></td>
</tr>
<tr>
<td></td>
<td colspan="3"><input type="submit" class="btn btn-lg btn-primary btn-block" id="salvar" name="salvar" value="SALVAR"></td>
</tr>
</table>
</form>
Javascript:
(document).ready( function(){
$("#salvar").click( function(){
var dataString = $("form").serialize();
$.ajax({
url: 'php/evento.php',
type: 'POST',
dataType: 'json',
data: 'data='+dataString,
success: function(data){
}
});
});
})
PHP:
<?php
include_once 'con.php';
$nomeEvento = $_POST['nomeEvento'];
$maisInfos = $_POST['maisInfos'];
$onde = $_POST['onde'];
$dia = $_POST['dia'];
$hora = $_POST['hora'];
$qryInsert = mysql_query("INSERT INTO evento VALUES(NULL, '$nomeEvento', '$maisInfos', '$onde', '$dia', '$hora')");
It passes the data to PHP but in INSERT to BD, only one of the data is NOT saved, the rest goes...
Not knowing exactly what’s not working will get hard to help you.
– André Ribeiro
@André, all the data: moreInfos, where, day and time, are being saved in the BD, except the nameEvento.
– GustavoSevero