Forum Moderators: coopster
i want it to look up if the same email adress is already in list so it would be like
Query select email from mytable where email= $_postemail
countrows = blahblah
if blah blah!= >0{
postitintable
}
so in this script you wont keep sending them when u press refresh...
its all on 1 page grtz
Alternatively, you could count in the SQL:
select count(email) from mytable where email = '$_postemail' arran.