Cita:
Iniciado por saraivaruas el codigo para la selecion del los datos del usuario s que queremos enviar los mensajes internos...
Ahi va :
conecfot.php
Código PHP:
Ver original<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Usuarios en linea ahora</title>
<meta name="description" content="Easiest jQuery Tooltip Ever">
<script src="jquery.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
</meta>
<style>
body {
margin:0;
padding:0px;
background:#fff;
font:80% Arial, Helvetica, sans-serif;
color:#555;
line-height:180%;
background-color: #004000;
}
h1{
font-size:180%;
font-weight:normal;
color:#555;
}
h2{
clear:both;
font-size:160%;
font-weight:normal;
color:#555;
margin:0;
padding:.5em 0;
}
a{
text-decoration:none;
color:#f30;
font-family: Comic Sans MS;
}
p{
clear:both;
margin:0;
padding:.5em 0;
}
pre{
display:block;
font:100% "Courier New", Courier, monospace;
padding:10px;
border:1px solid #bae2f0;
background:#e3f4f9;
margin:.5em 0;
overflow:auto;
width:800px;
}
img{border:none;}
ul,li{
margin:0;
padding:0;
}
li{
list-style:none;
float:left;
display:inline;
margin-right:0px;
}
/* */
#screenshot{
position: absolute;
z-index:1;
border:1px solid #ccc;
background:#333;
padding:5px;
display:none;
color:#fff;
}
/* */
body,td,th {
font-family: Comic Sans MS;
color: #000000;
font-size: 12px;
}
a:link {
color: #0000FF;
}
a:visited {
color: #0000FF;
}
</style>
</head>
<body>
<table border="0" align="center" bgcolor="#C0C000">
<tr>
<td valign="top">
<?php echo "<table width=\"470\" cellspacing=\"1\" cellpadding=\"1\">";
echo "<tr>";
echo "<td rowspan=\"2\" width=\"80\"style='border:1px solid #808080' >";
echo '<b> Total de usuarios conectados</b>'; require ("Usuarios/total_usuarios_conectados.php");//veremos la cantidad de usuarios on line en este momento
echo "</td>";
echo "</tr>";
echo "</table >";
?>
<?php
// selecionaremos los datos que necesitamos y inprimiremos solo los logueados
//los que tengan como valor el "si" que significa que estan logueados en este momento.
$result=mysql_query("select * from usuarios where conectado='si' order by id asc "); $cadena="";
{
$cadena=$cadena.
'<a href= "/enviar_mensajes.php?usuario='.$row['nick'] .'&mail= '. $row['mail'] .'"
class="screenshot"
rel=" http://www.esquinadosamba.cl/Usuarios1/imagenes/thumbnails/'. $row[imagen]. '
"title="Envie un mensaje a<br> '.$row['nick'] .'">
'.$row['nick'] .'|';
}
echo "<table width=\"470\" cellspacing=\"1\" cellpadding=\"1\">";
echo "<tr>";
echo "<td rowspan=\"1\" width=\"80\"style='border:1px solid #808080' >";
echo $cadena ; // aqui nos aparecera los nombres en cadena y ahy podremoscliquear y elegir
echo "</td>";
echo "</tr>";
echo "</table >";
?>
<br>
<?php echo "<table width=\"470\" cellspacing=\"1\" cellpadding=\"1\">";
echo "<tr>";
echo "<td rowspan=\"2\" width=\"80\"style='border:1px solid #808080' ><b>";
require ("publi/menu.htm");//esto es solo publicidad tu puedes borrarlo si quieres
echo "</td>";
echo "</tr>";
echo "</table >";
?>
</td>
</tr>
</table>
</body>
</html>
Para saber como hacer con la parte del usuario conectado revisa este aporte
http://www.forosdelweb.com/f18/aport...ajeria-909020/ la parte del registrado.php y login.php