Gossamer Forum
Home : Products : DBMan : Installation :

Creating forms and display

Quote Reply
Creating forms and display
Please help me!!

I'm trying to create my own forms.I'v done everything like you said in your Tutorial but I'm getting Error massage.Massage is:
CGI ERROR
==========================================
Error Message : Error loading required libraries.
Check that they exist, permissions are set correctly and that they compile.
Reason: syntax error at ./html.pl line 61, near "

You can see my fils at
http://www.cyberbulevar.com/html.txt
http://www.cyberbuleavr.com/default_cfg.txt

Thanks
Nerko
Quote Reply
Re: Creating forms and display In reply to
The problem is with your database title in the html.pl file. You cannot use single quotes between single quotes. Single quotes serve a special function in Perl.

Change the following:

Code:
$html_title = 'Cyberbulevar's Database';

to

Code:
$html_title = 'Cyberbulevar\'s Database';

The \ character is an escape character that allows you to put Perl special defined functions as HTML text.

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
www.anthrotech.com
----------------------