![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
08/07/2009, 20:03
|
![Avatar de Italico76](http://static.forosdelweb.com/customavatars/avatar175649_11.gif) | | | Fecha de Ingreso: abril-2007
Mensajes: 3.303
Antigüedad: 17 años, 10 meses Puntos: 292 | |
Respuesta: Porque no me funciona el codigo? <div align="center">
<?php
$nombre = $_POST["nombre"];
$nacionalidad = $_POST["nacionalidad"];
$peso = $_POST["peso"];
$fuerza = $_POST["fuerza"];
$altura = $_POST["altura"];
?>
Su usuario <b><?php echo $nombre ?></b> esta siendo registrado.
<?php
if (is_writable($nombre)) {
echo "Lo sentimos, pero ese nombre ya está en uso"; // aca faltaba ;
}else{
fopen("datos.txt", "a+");
}
?>
<div>
__________________ Salu2! |