Yes, I know that.. but HOW is my question 🙁 I'm so far a beginner with PHP.
This is my query if I update ONE picture:
$query = "UPDATE pix SET description=$newdescription WHERE id = '$pic_id'";
but since I'm updating several in the same time I don't know how to do it.
Please help me by writing the FULL -addtodatabase- script..
Got this sent to me but I never understood it:
$i=0;
while($pic_id[$i]) {
$query = "UPDATE pix SET description=$newdescription WHERE id = '$pic_id'";
$i++;
}