Use repeated calls to mysql_fetch_assoc. It's documented right in the PHP manual.
Use repeated calls to mysql_fetch_assoc. It's documented right in the PHP manual. php.net/manual/function.mysql-fetch-asso... // While a row of data exists, put that row in $row as an associative array // Note: If you're expecting just one row, no need to use a loop // Note: If you put extract($row); inside the following loop, you'll // then create $userid, $fullname, and $userstatus while ($row = mysql_fetch_assoc($result)) { echo $row"userid"; echo $row"fullname"; echo $row"userstatus"; } If you need to, you can use this to build up a multidimensional array for consumption in other parts of your script.
I should have known it was in there. Thanks so much! – Jjack Jun 26 '11 at 2:41.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.