How do you display points so i got my points in a mysql database
what code should i use.
Example:
Mysql database:
Username|Password|points
user1234|password|5
Here is my member page code:
<?php
session_start();
require_once("connect.php");
// Check his status.
if (!empty($_SESSION[username])) // he got it.
{
echo "You are currently logged in, <b>$_SESSION[username]</b>.</br>";
}
else // bad info.
{
echo "You are currently <b>NOT</b> logged in.";
}
?>