well my mom is complaining and these few min are going to be the only time im on for the rest of the night... any how here is the code which is currently in the web page...
<?php
include('config.php');
include('opendb.php');
$result = mysql_query("SELECT User_ID, T, User_ID FROM member");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
printf("<table><tr><td> ID: %s</td> <td>Stats: %s</td> <td>Do this One: <a href='?action=%s'>Yes</a></td></tr><br />", $row["User_ID"], $row["T"], $row["User_ID"]);
}
mysql_free_result($result);
?>
i will toy around with the $_GET function tommorow before i go out but if there is another way to do it going based on this current code that would be great...
and i also found what the ?action= is it is a part of an array function ill also look into that tommorow hopefully
