![]() |
|
Add author name in adding image part - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Add author name in adding image part (/thread-624.html) |
Add author name in adding image part - Ludrio - 2006-06-25 Hi! I want to add the posibility for me to write the name of who took the picture I'm uploading. I added a input in the admin area like this: And in classes.php i edited this:
Notice the $forfatter part. Forfatter is norwegian for author. I also made a new part in the image in the database called forfatter. The problem is that I cant get the information i write in the input to be saved in the database. I also tried $_POST['forfatter'] but it didnt work. Help! Add author name in adding image part - trisweb - 2006-06-26 You also have to look at the POST-form handling logic at the top of admin.php, which is where the save functions are actually called for the upload. Take a look at those save methods in classes.php; you'll have to make a new one and call it when the author is updated. Ideally, you'll also want to edit it later, so look at the admin edit page and add a field there as well. It's more complicated than just those few lines you've shown us... take a look at how the upload form is handled and maybe you'll see how to do it... Add author name in adding image part - Ludrio - 2006-06-26 Well I tried, but cant :S |