lol -- my comment about "logical" was meant to be an educational statement, not a "slam" against you ;) .... sorry ... I could have worded it more gently.
1. In looking at your site, I see that you have a line near the top of your tpl_birthday_club_default.php file that says:
HTML Code:
<tablewidth="70%" border="0" cellspacing="2" cellpadding="2" >
You might want to split "tablewidth" into two words:
HTML Code:
<table width="70%" border="0" cellspacing="2" cellpadding="2" >
2. In that same file, right above that table, you have a statement about zen_draw_form(FILENAME_BAND_SIGNUP, 'band_signup', .......
You probably need to change that to FILENAME_BIRTHDAY_CLUB
3. Related to #2, check to be sure that you've defined 'FILENAME_BIRTHDAY_CLUB', usually in a file in the /includes/extra_datafiles folder
PHP Code:
define('FILENAME_BIRTHDAY_CLUB', 'birthday_club');
Bookmarks