
Originally Posted by
SoulSlayer
ok, this is the site
www.linkingames.net/~kingdoms he say an error for a tabble... but i dont know how to fix it... mayby u know the error?
i dont know what to do now...
The error on the page is: Unknown column 'id' in 'where clause'
That means, you have a call to your database something like this:
PHP Code:
SELECT * FROM sometable WHERE id = 'something'
However, your database table "sometable" (or whatever it's called) must not have a field called "id". View the structure of your table and find out what you have labeled the fields. It must be something different than "id".
Is this code you're writing yourself or a pre-made script?
Bookmarks