Registro de usuario con mysql no me funciona !

Iniciado por neopuerta360, 22 Diciembre 2010, 15:14 PM

0 Miembros y 1 Visitante están viendo este tema.

Shell Root

Código (php) [Seleccionar]
<title><? echo $titulo; ?>-Enviar Boletin</title>
<?php
if (isset ( 
$enviar )){
if( $enviar ){
function quitar$texto ){
$texto trim$texto );
$texto htmlspecialchars$texto );
return $texto;
}
$fecha time() - 25200;
$mensaje quitar$mensaje );
include ( 'conexion.php' );
$resp mysql_query "SELECT nick FROM usuarios WHERE boletin='si'"$conexion );
while ($row mysql_fetch_array ($resp)) {
$nick $row ['nick'];
$mensaje $_POST ['mensaje'];
}
}else{
$remitente Boletin;
mysql_query"INSERT INTO mensajes (fecha, destinatario, remitente, asunto, mensaje) VALUES ('"$fecha ."', '"$nick ."', '"$remitente"', '"Boletin"', '"$mensaje ."')" );
echo "<p>El Boletin ha sido enviado con éxito. Haz click <a href='index.php'>aquí</a> para regresar.";
}
}else{
?>

<form action='<?php $PHP_SELF?>' method='POST'>
Introduce el mensaje:<br><br>
<textarea name='mensaje' cols='30' rows='5' class='form'></textarea>
<br><br>
<input type='submit' name='enviar' value='Enviar Boletin' class='form'>
</form>

<?php
}
?>
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.

neopuerta360