i have a list and mysql table. my goal is to make the links active if there is a game in its section:
this is my code:
mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM gameChart");
$row = mysql_fetch_array($result);
echo "<dl><dt>Writer's Forge</dt>";
if (!$row["secID"] == 1){
echo "<dd>Collaborated Poetry</dd>";}
else { echo "<dd><a href='showcase'>Collaborated Poetry</a></dd>";}
if (!$row["secID"] == 2){
echo "<dd>Collaborated Sreenplays</dd>";}
else { echo "<dd><a href='showcase'>Collaborated Sreenplays</a></dd>";}
It keeps making all the links active.