Ok I have a promblem. Im getting a unidentified variable error from $found:
Whats wrong here?
while($row = mysql_fetch_array($result))
{
**$found** = true;
echo "Character/Alias: " . $row["CharName"] . "<br>Created: " . $row["CharBorn"] . "<br>Game: ";
if ($row["CharGame"] == '0')
{
echo "None";
}
else
{
echo "In-Game";
}
}
if(!$found)
{
echo "No Characters/Aliases<br>";
echo "<a href='create.php'>Create A Character/Alias</a>";
}