I have a Table in my DB that has 2 fields, on is a date (Text, 11.18.2002) and the other (longtext) is basicly a text file that is sometimes several pages long.
I have a page set to display the contents of the second field, but when the page runs there is nothing there... no errors, nothing.
$result = mysql($dbname, "SELECT * FROM $table WHERE date=$date");
$date = $row["date"];
$minutes = $row["minutes"];
echo $minutes;
This is the code I am currently using... Thoughts?