Hi,
I want add a field in the "photos and documents" tab, in backend.
I modify in realestatemanager.html.php (administrator), this code
Code: |
<input type="checkbox" name="del_photos[]" value="<?php echo $house_photos[$i][0]; ?>" />
<img src="<?php echo $mosConfig_live_site . "/components/com_realestatemanager/photos/" . $house_photos[$i][1]; ?>" style="height:100px;" alt="no such file"/>  
<input class="inputbox" type="text" name="position_photo" id="position_photo" value="<?php echo $house_photos[$i][2]; ?>" style="width:40px" />
|
I add "inputbox" "position_photo".
And i add in rem_photos database, the column "position".
But when I complete the fields in the backend, it does not register in the database.
I tried to add queries "update" in the file realestatemanager.php (administrator). But unsuccessfully. It only works when I complete directly the database via phpmyadmin.
Can you help me ?