K, Here is an example of the script I am running. The MySQL field LongStory is a BLOB. Basicly what I want to do is check to see if any info was input into LongStory, if LongStory is empty, then do not show a link, if LongStory hold info (such as letters) then show a link
$sql = mysql_query("SELECT * FROM news");
while ($row = mysql_fetch_array($sql)) {
if ($row['LongStory']) {
//Create a link if longstory has value
}
echo $row['ShortStory'];
}
If there is a way to check this let me know please. I tried a == null, I tried == ''. But I cannot get this to work at all. THanks for any help.