I have the following code snippet:
if ($row["post_url"] == "") {
} else {
echo "<br><a href='" . $row["post_url"] . "'>" . $row["post_url"] . "</a>";
}
the value of "post_url" is a text string, not an integer, so the == is inappropriate. What is the correct thing to use here?
Thanks in advance,
Caleb Newville
(caleb@inetwiz.com)