Tema: tinymce
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/08/2013, 08:38
Avatar de teslas
teslas
 
Fecha de Ingreso: febrero-2013
Ubicación: Barcelona
Mensajes: 106
Antigüedad: 11 años, 2 meses
Puntos: 1
Respuesta: tinymce

if (isset($_POST['title']))
{
$title = ($_POST['title']);
$post = ($_POST['post']);

$post = htmlspecialchars($post);

if ($title != "" && $post != "")
{
$time = time();



$DB->RowInsert('posts', array('posted' => $time, 'user' => $_SESSION['user_id'], 'title' => $title, 'content' => $post, 'lastupdated' => $time));
$id = mysql_insert_id();
header('Location: post.php?id='.$id);
} else {
$error = "Enter Both Fields!";
}
}

Ahora estoy en ello, mirando el tema
Un saludo

Última edición por teslas; 27/08/2013 a las 09:09