I am beginner to laravel. I have created project. And I have run following commands to it. composer require laravel/ui --dev npm install npm run dev php artisa
I'm working on a project with Symfony 5.3 with PHP 8.0.12. I've been developing it on my own computer, it's working well. I now want to deploy it on a remote co
I want to display data in Laravel using Yajra Datatables, but the problem is that the data can't sync yet. If I do Dump and Die dd($orders), the number of dat
I create company profile website using laravel 5.8 and vue js for make it reactive, it's not SPA(single page application) maybe we can call it hybrid, everythin
I am migrating a MySQL table which has 50 million+ rows and 40 columns to a MongoDB database. This table data is shown on a html table and every column is searc
I'm trying to use xdebug 3 with docker on ubuntu 20.04, but I'm not getting success, xdebug does not enter the interruption point, I already searched for everyt
The answer is probably very simple, but I've been running around in circles and I can't find an answer anywhere. I'm trying to mock a final class which is norma
I am looking to get row count to check if same email is already in database or not. i have tried couple of mechanism but no success. when i run my query directl
index.html: <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="
Hi everyone I have a sql server table that contains fields that are of type varbinary. The table model sees the field as a string, when it tries to save it it g
how can I update multi specific rows in mysql and php ? in the example there are tow rows 50 , 51 I need to update "quantity" and "note" . SN | Medication | Qya
I use this hook to show variations on the shop page. However, the product image does not change when a variable is selected. It works on a Single product page.
This is a strange one. In my ECS Fargate task, I have a Docker container running PHP code that calls mysqli_connect to connect to an RDS MySQL database. Works g
I should insert an array such as $attendanceList = [18354012,18354013,18354014,18354015] and $present = "FALSE" and same for all item of $attendanceList. As you
I would like to get the company posts from LinkedIn in PHP. What request should I use to ask for the post? I try to use PHP library "zoonman/linkedin-api-php-
I am developing a PHP script that allows me to modify tags in an XML file and move them once done. My script works correctly but I would like to add error handl
My Task is to create a permission system that is not pre-defined by roles. E.g the system does not define the roles which an admin can assign to other users. In
I have this code: <script type="text/javascript"> var foo = 'bar'; <?php file_put_contents('foo.txt', ' + foo + '); ?> var
Here is my code: use Aws\CognitoIdentityProvider\CognitoIdentityProviderClient; $args = [ 'credentials' => [ 'key' => 'valid', '
In PHP how can I detect if I am running on an arm64 CPU or not? (as opposed to, for example, an AMD64 CPU)