I have a table in a form.
I have 2 fields I want displayed in this table, but I want each field from the table to be displayed in a separate cell on the table (Im using mysql).
Then, once the end user types a response into a cell, it checks a 3rd field in the table to verify the value they typed is correct.
I have a series of images on the server with links to them in a field of the DB. Then, I ask a question about the image. If the end user answers correctly, it will allow information in the rest of the form to be submitted to the DB.
The reason I am doing this is because I cannot seem to figure out how to use "captcha" in my existing form (Im not well versed in php).
Any help would be appreciated.
It needs to go here:
field names: ID, image,question
dbname: pictures
tablename: images
Code: Select all
<tr>
<td>the question here</td><td>the image here</td><td> a field to type there response here</td>
</tr>
As it sits now, the submit works fine, but there is not protection against spam bots (I had to take my site down because I was being hammered by about 10,000/wk into 3 tables).
Thank you
Terry