Hey again, i have another two problems that i cant work out, they are:
i have a page that checks something, and depending on what it is, it moves it to a folder, BUT, i want one item to get moved into two folders, i have this:
if($ann == "item")
move_uploaded_file($tmpname, "images/$id.jpg");
move_uploaded_file($tmpname, "$def/$id.jpg");
but that only copies it to "images/$id.jpg"
i dont know what to do 🙁
my other problem is this:
tr("Image", "<input type=\"text\" class=\"input\" name=\"image\" value=\"" . htmlspecialchars($row["image"]) . "\" size=\"80\" />", 1);
it brings up the image link, i can change it, but when it comes to clicking "edit" (where is saves the changed) it just refreshes as normal but hasnt made the changed.
i also dont know whats going wrong with thing 🙁
any help would be greatly apreciated 🙂