
09-02-2002, 06:03 PM
|
 |
|
|
Join Date: Oct 2001
Location: London, England.
Posts: 739
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by Link14716
Trying to add usernames based on userids already in the arcade table........ no luck.
Code:
SQL-query :
UPDATE arcade SET username=MattyD316 WHERE userid=1
MySQL said:
Unknown column 'MattyD316' in 'field list'
Tell me how bad I am screwing up, or try to make a scrip or something to do so. Please?
|
Try this:
PHP Code:
UPDATE arcade SET username="MattyD316" WHERE userid=1
|