Sorry for being vague LOL, PHP isn't my strong point
The page is supposed to display a list of Zodiac signs, which it does. When I click on one of them, say "Capricorn" (zodiac.php?do=capricorn) it gives me:
"There appears to be a problem with the database. The capricorn weekly horoscope can't be retrieved at this time. Please check back later."
The data is in the table though, I'm looking at it right now. (screenshot attached)
Here's a link to the
original zodiac hack.
If it matters, this is the install code I'm using for the vBulletin product:
PHP Code:
$db->query_write( "CREATE TABLE `".TABLE_PREFIX."zodiac` (
`sign` VARCHAR(12) NOT NULL,
`weekly` LONGTEXT NOT NULL
) TYPE=MyISAM;");
$db->query_write("INSERT INTO `".TABLE_PREFIX."zodiac` (`sign`, `weekly`) VALUES ('aries', ''), ('taurus', ''), ('gemini', ''), ('cancer', ''), ('leo', ''), ('virgo', ''), ('libra', ''), ('scorpio', ''), ('sagittarius', ''), ('capricorn', ''), ('aquarius', ''), ('pisces', '');");
Again, thanks for your help.