listo men sip mira el problema esta en el php perfil en el cual tu lo pones normal sin aser nada de restricciones vale;
en este es donde vas a rescatar todos los datos de un solo usuario como lo ases asi mira:
Código HTML:
Ver original<?php require_once('tuConeccion'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$colname_Usuario = "-1";
if (isset($_GET['s_username'])) {
$colname_Usuario = $_GET['s_username'];
}
mysql_select_db($database_tuBD, $tuBD);
$query_Usuario = sprintf("SELECT Usuario, Password, Correo FROM usuarios WHERE Usuario = %s", GetSQLValueString($colname_Usuario, "text"));
$Usuario = mysql_query($query_Usuario, $tuBD) or die(mysql_error());
$row_Usuario = mysql_fetch_assoc($Usuario);
$totalRows_Usuario = mysql_num_rows($Usuario);
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <!--
body {
font-family: "Trebuchet MS", Tahoma, Verdana;
font-size: 12px;
font-weight: normal;
color: #666666;
text-decoration: none;
padding: 20px;
}
h4 {
color: #CC0000;
}
-->
<p>usuario :
<?php echo $row_Usuario['Usuario']; ?></p> <p>correo:
<?php echo $row_Usuario['Correo']; ?></p> <p>pass:
<?php echo $row_Usuario['Password']; ?></p> <?php
mysql_free_result($Usuario);
?>
acuerdate de cambiar el conection de este "tuBD" a como se llame la tuya si no no funcionara checa el codigo y donde veas eso cambialo ala tuya
EDITO:
en la primera linea es tu coneccion no la BD :p