Hello DP members, New to php/mysql. I have phpmyadmin on my server. How do I change the input in a specific field (1600 + cells) all at once. It is a checkbox that is set to "0" (not active) and needs to be "1". Any help is appreciated, hate to mess up the db. Thanks in advance, Dracubat
in phpmyadmin go to the desired table and click on the 'sql' tab UPDATE tablename SET fieldname='1' WHERE fieldname='0'