I've been trying to include the security image for a while now, and there's something I'm screwing up.
I added the path to the WSN Gallery installation '/home/kellysol/public_html/images/'
and then I added this to the contact form
<tr> <td>Security Image: <br>Type the letters and numbers shown on the left into the box on the right. (This is to prevent automated submissions.)</td> <td><img src="images/securityimage.php"> <input type="text" name="securityimage" size="4" maxlength="4" style="border:1px solid #741404; font-size:9pt;"> </td> </tr>
Then, when I send the form, I get this error:
Fatal error: Cannot redeclare geturl() (previously declared in /home/kellysol/public_html/formemail.php:58) in /home/kellysol/public_html/images/filefunctions.php on line 260
Comments on Trying to include the security image
Forum Regular
Usergroup: Customer
Joined: May 11, 2003
Total Topics: 64
Total Comments: 199
I've been trying to include the security image for a while now, and there's something I'm screwing up.
I added the path to the WSN Gallery installation
'/home/kellysol/public_html/images/'
and then I added this to the contact form
<tr>
<td>Security Image:
<br>Type the letters and numbers shown on the left into the box on the right. (This is to prevent automated submissions.)</td>
<td><img src="images/securityimage.php"> <input type="text" name="securityimage" size="4" maxlength="4" style="border:1px solid #741404; font-size:9pt;"> </td>
</tr>
Then, when I send the form, I get this error:
Fatal error: Cannot redeclare geturl() (previously declared in /home/kellysol/public_html/formemail.php:58) in /home/kellysol/public_html/images/filefunctions.php on line 260
The contact form is located here:
http://kellys-online.com/contact.php
BTW, why is the security image always showing the same letters???
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
Because of the autoresponder also being used I see. Put an
if (!function_exists('geturl'))
{
}
around the geturl function. Updated the available zip.
Forum Regular
Usergroup: Customer
Joined: May 11, 2003
Total Topics: 64
Total Comments: 199
perfect, thank you