First, I don't know where you found version 1.6, but you should grab the
1.7, which fixes some security issues with 1.6.
The script file is basically only
validation.php. The other PHP files are just an installation file (create_tables.php) and an example file (mypage.php) which includes the script on a page.
Now, to be able to include the script in your existing page, the extension of the page must be .php. I suppose you'd rather not rename your page from .htm to .php, so I see 3 possible solutions:
- the easiest one: you create a separate page, looking a lot like mypage.php, in which you include validation.php, and then on your ham_radio_cartoons.htm page you place a link to mypage.php
- another possibility would be to do the same as above, but instead of linking to the .php page, you could include it within your ham_radio_cartoons.htm using AJAX (the problem is that users with Javascript turned off wouldn't see the form, you'd need to fall back to the first solution for them)
- and finally, you could "heavily" customize the script in order to split it in a form part (HTML only, doesn't require PHP) to be included into ham_radio_cartoons.htm, and a form treatment part, stand alone with a .php extension
In all cases I suppose you'll need to edit the script to remove the user name and password fields.
Hope this helps,
David