Código PHP:
<?php
//entramos a la base de datos
$conexion = mysql_connect("localhost", "xxxxxx", "xxxxxxx");
mysql_select_db("xxxxxxxxxx", $conexion);
$queEmp = "SELECT * FROM registro_usuarios ORDER BY username";
$resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
$totEmp = mysql_num_rows($resEmp);
?>
Código PHP:
<?php
if ($totEmp> 0) {
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo '*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*<br /><a href=perfil.php?username='.$rowEmp['username'].'>'.$rowEmp['ID']. ".- " .$rowEmp['username'].'</a><br />';
}
}
?>
Código PHP:
<?php
//entramos a la base de datos
$conexion = mysql_connect("localhost", "xxxxxx", "xxxxxxx");
mysql_select_db("xxxxxxxxxx", $conexion);
$queEmp = "SELECT * FROM registro_usuarios ORDER BY username";
$resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
$totEmp = mysql_num_rows($resEmp);
?>
Código PHP:
<?php
if ($totEmp> 0) {
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo $rowEmp["nombre"];
}
}
?>