I have a sports page. I was curious if I could edit each players stats after the game from one page (not one page per player, but one per team) by:
$SELECT id, lastname, totpoints FROM table ORDER BY id DESC;
Then have a table, so that each id will have a row
hidden id
echo row->lastname
input text box for totpoints
then
$UPDATE table WHERE id = 'id' SET $totpoints = totpoints
Could I do this? If my coding thinking is wrong, how can I do it?