--- Wade <[EMAIL PROTECTED]> wrote: > line 74 > print 'Would you like to own a kitten from A Cat's Desire?<br /><br />'; > print 'If so, this is the place to start! <br /><br />';
It's getting tripped up on the apostrophe in "Cat's" on line 74 -- the script thinks you're closing the single-quote. Either change your enclosing single quotes to double-quotes, or escape your apostrophe: print 'Would you like to own a kitten from A Cat\'s Desire?<br /><br />'; OT - I notice you're using valid XHTML code on your <br />'s but using <font> tags elsewhere... why not use CSS to set your fonts instead of deprecated font tags? Cheers, -Bob __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
