Sorry for the bad title, but I’m not sure how to describe this in a one-liner… I’m building a component for Joomla (3.9.19), and in a form I have a select of languages, with the options written in …
Form returned bad request: Missing required parameters: id
I’m new to yii2 and I want to make a signup form using yii2 basic I use the generated mvc from gii but when i submit the registration it returned bad request but some of the data i’ve input is in the …
Update multidimensional array from (Y-m) to (Y)
I would like to know if there is any way to change or update a multidimensional array from this Array ( [AZ] => Array ( [1] => 2020-01 [2] => 2020-02 ) [BY] => Array ( [0] =…
A newbie PHP question – hiding PHP variables from URL
I’m creating a feature for a game and came up with a problem I can’t solve on my own. I made an image generator to show the top dogs of guilds from a JS based Discord bot, the script which generates …
I’m encountering issues docker file sharing : setting volumes [closed]
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 1 year ago. Improve this question I have problem mounting local directory and get File sharing has been cance…
default() is not working in laravel migration
I am creating a to do list using laravel, and I have a table with the columns below: ‘title’, ‘description’, ‘completed’, ‘id’ The ‘completed’ column is set automatically whenever I add a new task to …
Print a multidimensional array in a table, keys and values
I have the following array And I want to print in a table the array with KEYS and VALUES Im currently using this foreach loop Im am getting the following table But I want it to look like this If anyone knows how to fix it, I would be very grateful Answer Remove inner loop and access items of $value
PHP Issue with isset function
I’m making a contact form for my website that uses php to send the inputted information to my email. My issue is that the isset php function returns false. I’m not sure why this is. Here is my php …
Bootstrap Dropdown menu issue on mobile
I will need some help with the menu showing on mobile. When the STORE menu is clicked on mobile version it does not expand and instead closes the general menu. Here is the link of the web page. Any help will be appreciated. <body> looks like Menu HTML Answer You have 2 Bootstrap navs, one inside the oth…
Making an array out of substr_replace
Hi everyone newbie here, I’m taking on the tedious task of changing a bunch of IDs for a game and turning them into a string. As you can see here I do this for ID 29 and turn it into Sharpshooter. Is …