Similar to this question (http://forum.coppermine-gallery.net/index.php/topic,74779.0.html), how would I then batch name via SQL query a select portion of pictures within a given album? For example, I want to title only pictures xxx through yyy inside a given album, I assume using a PID statement, but cannot figure out how to implement that variable.
Any suggestions?
http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html#operator_between
So you could use something like
UPDATE cpg15x_pictures SET title = 'new title' WHERE pid BETWEEN xxx AND yyy
That'll do it, thanks again.