People dont mind helping those who make an effort to learn and at least show some effort to code things. If you want to have the code written for you then you should consider hiring someone to do it
I know how to code very well. I know HTML/CSS really well. And I know PHP very well. My MySQL knowledge however is not very good. I wouldn't pay someone to code this. It is a very small snippet of code. Sorry if that sounds selfish.
Well the column SQL is SELECT `column_name_here` FROM `table_name` Code (markup): I'd really recommend you read up on mysql from w3schools or whatever if you're at the stage where you're really confident in php but not MySQL since they kinda get learnt together generally EDIT: Also, the array part should be the simplest for a php coder
lol Sadly that was the only part I know. I don't really know where to go form there. I know simple things and like Sign-Up/Login things.
if u need $query="select * from table_name" $result=mysql_query($query); while($row=mysql_fetch_array)//array in $row { echo $row['column_name'];//show all array of colum_name by loop } Code (markup):
u can use if(in_array($email,$row['column_email'])) Code (markup): with $email is var $_POST in form $row['column_email'] is array email in your database
For some reason this creates an endless loop. Where are you getting $row from? Sorry for my stupidity. My MySQL knowledge is limited and I haven't used it for a very long time.
this is the code you aks $query="select * from table_name" $result=mysql_query($query); while($row=mysql_fetch_array)//get value to array from database into $row { echo $row['column_name'];//show all array of colum_name by loop } Code (markup): this is not enless loop,loop will end when it show all values in query