![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
07/05/2002, 17:04
|
| | Fecha de Ingreso: enero-2002 Ubicación: Mérida
Mensajes: 61
Antigüedad: 23 años Puntos: 0 | |
duda Hola a todos.
tengo este script:
$check = "test";
$check .= $filename;
if ($test == $check)
{
print("<HTML><BODY>You have already voted. Thank you.</BODY></HTML>");
}
else
{
$rated = "test";
$rated .= $filename;
setcookie(test, $rated, time()+86400);
print("<HTML><BODY><br>You haven't voted before so I recorded your vote</BODY></HTML>");
}
quisiera saber para que sirve el "punto" esta en .=$filename
Gracias. |