Say i have this table in mySQL:
and I want to display ALL the rows of the name column, how should I do this? I triedCode:ID | Name | stuff ----------------- 5 | Hank | 1234 ----------------- 7 | Derp | 5678andCode:mysql_fetch_assoc()but that only gets me the first value.Code:mysql_fetch_row()
Btw, I am using PHP.


LinkBack URL
About LinkBacks
Reply With Quote


,email VARCHAR(35),phone VARCHAR(25), groups VARCHAR(15),datestamp DATE,timestamp time,pgpemail VARCHAR(255));

