|
Select a topic and questions will appear here.");
}
else
{
print("Select a $hidden_topic question. ");
}
$sql = "SELECT pkey, question FROM faq WHERE catagory = '$hidden_topic' and (distribution = 'public' || distribution = 'both')";
$result = mysql_query($sql);
$num = mysql_num_rows($result);
if($num != "0")
{
while($row = mysql_fetch_array($result))
{
$pkey = $row["pkey"];
$display_question = $row["question"];
print("$display_question ");
}
}
?>
$question
$answer ");
}
}
?>
Cross Reference:
question;
print("$question_two ");
}
else
{
$sql_one = "SELECT question FROM faq WHERE pkey = '$cross_one'";
$result_one = mysql_query($sql_one);
$row_one = mysql_fetch_object($result_one);
$question_one = $row_one->question;
print("$question_one ");
}
}
}
?>
">
|