Hola Thelightandthenight.
Cita:
Iniciado por Thelightandthenight
Código PHP:
Ver original$conexion ="INSERT INTO temas (titulotema, descripcion, fecha) VALUES
('$titulotema', '$descripcion' NOW())";
echo "Tema registrado";
}
Por lo que veo, te falta una coma:
Código PHP:
Ver original$conexion ="INSERT INTO temas (titulotema, descripcion, fecha) VALUES
('$titulotema', '$descripcion', NOW())";
echo "Tema registrado";
}
Espero que así te funcione.
.