I'm doing some modifications on a carpark booking system created by PHPJabbers. https://www.phpjabbers.com/car-park-booking/ I don't know much about php and it's sturcture. I think my question will be answered very soon because it must be a very simple one:D
I have views and controllers. As I imagined, controllers give content to views. In every php file in the views folder I see a php variable called tpl.
Like in this:
" class="pj-form-field number w80" readonly="readonly"/>
the url's end looks like: index.php?controller=pjAdminBookings&action=pjActionUpdate&id=12579
(the action is the name of the php file in views) I tried to search the whole project for it's source but I could never find anything. For exmaple I searched for ['option_arr'] and everything I found was in views and was the key of tpl variable. (Once a thought I did find it in the controller named in the url... now it's not the case)
I hope you can understand the question despite my poor english. Thank you!