miren quiero hacer que en una parte diga el nombre del usuario, rango(que seria rango 1), un mensaje propio y puntos pero no me genera los resultados miren mi codigo:
Código PHP:
Ver original<?php
require('../Kira/sesion.php');
$sql = mysql_query("SELECT username,motto,puntos FROM users WHERE username='".$username."'"); ?>
<html>
<head>
<title><?php echo $CH['title']; ?>: Tu pagina</title>
<link rel="stylesheet" href="css/paginas/general.css" type="text/css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<body>
<div id="info">
<div id="inf">
<span>Nombre: <?php echo $row['username']; ?></span>
<hr>
<span>Tu mensaje: <?php echo $row['motto']; ?></span>
<hr>
<span>Puntos: <?php echp $row['puntos']; ?> Pixeles: 15601680</span>
</div>
</div>
</body>
</html>
y en sesion.php es esto:
Código PHP:
Ver original<?php
include('configuracion.php');
if (isset($_SESSION['s_username'])) { echo '<div id="nami" style="position: relative; top: 80px; text-align: center; font-size: 20px;">','<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="2" scrolldelay="50" behavior="alternate">',"Bienvenid@ ".$_SESSION['s_username'].", gracias por visitar!",'</marquee>','</div>';
}else{
echo "Tu no estas autentificado dirígete a login.php o registrate en register.php";
echo $_SESSION['s_username'];
}
?>
¿alguna ayuda? gracias de antemano