I'm doing my first steps into MySQL and I'm a bit confused. I'm trying to make a simple database to fill with my contacts. Each contact will have a few NOT NULL fields (name, email, and so on) and a few NULL ones.
I created the database and the table with all the fields I needed. Now I need to create a webpage with a simple form, where my friends can compile said form with their info, filling the database directly.
The two most important things are: - You can't submit your data if the email is already recorded (so that no double will be created, since names can be identical) - It needs a "i'm not a robot" thingy to avoid bots to fill it out.
Does anyone know a good tutorial I could follow? Or has a script I can customise that does that?
Thanks for the help