Skip to content

Use different php version in dedicated server folders?

I have dedicated server on godaddy.com which have a domain named example.com in this domain i have two backends one CodeIgniter which use PHP 7.4 and another Laravel 9 which required PHP 8.0 so my cPanel still using default PHP 7.4. Is there a way to make the folder contain Laravel 9 use PHP 8 instead of cPan…

How to handle validation of multiple hidden fields

I have created a form where in many cases some fields are not displayed until user select a certain option that will make the particular field displayed, this is controlled by HTML onchange Event Attribute with functions in script. To this point everything works fine. Problem: In the Request class I am implem…

If the variable contains text within the string | HTML

I currently use this html code {{ou.user_agent}} Which results in the build which results in the user agent. To identify an exact word I do this {{ou.user_agent == “Store” ? “Go” : “Nope”}} If the user agent contains Store exactly, it returns Go and if it does not, it retur…

Best way to obtain prefix and last part of url in Laravel

I have a group route like this PHP LARAVEL 9 In the controller side I want to obtain the accomodations part and the italy greece part without slashes. I’m doing like this PHP LARAVEL 9 This works but the way I’m manipulating the request in $listType seems a little bloated to me, is there a cleaner…

Line up two tables

I have two following arrays: Now I want to take the common part of them, based on the date value, starting from the top and bottom, so the result should look like this: I have started with something like this: But it does not work, if there is a difference in the middle, how can I repair this? Answer Get