I'm not a programmer and i dont want this project because of that. Remember that saying "Redhat is not Linux"? How about "Linux users are not programmers"... haha.
Anyway, I'm stuck with this cursed project and I cant do the things I know how to do untill I'm finished, so if someone could help a non-programmer out, I promise to never allow myself to get talked into something like this again.
Here's what i have so far:
setup SQL statement
$SQL = " SELECT * from users";
execute SQL statement
$len = mysql_db_query($db, $SQL, $cid);
check for errors
if (!$len) { echo( mysql_error()); }
else {
# display results
echo ("<P><DT><B>Full Listing Of Database Contents (to be changed to something more usable AFTER it randomises</B><BR>\n");
while ($row = mysql_fetch_array($len)) {
$email = $row["email"];
$password = $row["password"];
$date = $row["date"];
echo ("<p></p>\n");
echo ("<p>'$email''$password''$date'</p>\n");
}
echo ("</DT></P>");
}
So all i want to do is randomise the output. thats all. If you view the output, it will be in one oerder, if you view it again, the order will be different.
I have spent 5 hours trying to implement the suggestions so kindly put forth, but to no avail. I guess if I was a programmer I could do it.
Thanks in advance.