Skip to content

Tag: php

Use the Joomla Language override to create custom tags

I have this piece of code that already runs on the pages I need this done. (The entire Joomla 3.9 site is a Frankenstein of custom code, components, etc. ) I tried adding the following to see if I can get this to set the title the same way. Meaning, I go into the Joomla Language overrides section, add the

PHP Sort results from key values inside multiple json files

is it possible to sort the results by key value inside separate json files? I need to sort the result by “id” value. Sorry if this is a duplicate but I’ve searched entire internet and couldn’t find a solution. Many thanks for your help. Content of multiple json files inside the directo…

How to direct the uploaded image to the file i want

i’m asking user to input the image as; Then i am storing that data into my database with the following; And then i am listing the files and the image i get from the user in the function below; However when user uploads the image,i want it to upload the image into my C:xampphtdocsea file. Tried this Stor…

Popup won’t appear when clicked inside a table button

Can anyone suggest some alternative solution for this problem. I’ve made a popup form which i use css and javascript to trigger the display to none or flex every time i click into a specific button which is great. But this method seems to not work on a table as you can see below i’ve done a simple…

Target index of array

I’m trying to target the index of my array. For some reason my array turns out really weird. Now I get the results I need. But I need the name of each index too. Results: var export – $name: var_export – $mednames: var_export – $cnt: var_export – $c: Now the problem here is that …

How to test create model service?

I decided to create CreateClassroomService to separte logic in my controller method. I am trying to test this service as part of learning unit testing, but I don’t know how. I don’t know how to mock the classroom object to control what the method should return. Does this mean that creating this se…