Quote:
Originally Posted by ged
How can I do that? Can you write a query for this?
Thanks a lot... 
|
To change it in posts? First make a backup of your post table, then run the following query at phpmyadmin:
Code:
UPDATE post
SET ipaddress = 'xxxxxxx'
WHERE userid = x;
Replace x with the uid of the user whose ip you want to change and xxxxxxx with the new IP address that you want that user to have instead of his/her real ip. And if your db tables have a prefix you should apend it next to the table name at the query above. Hope it helps.