I am still getting this error below saying that PHP extension mbstring is missing when deploying my Laravel application (version 6.17.1) using Dokku (version 0.18.3) even though I have followed the …
Tag: php
Connection refused for connecting with MySQL server using php in XAMPP(MacOS)
I am new to database. I was trying to connect mysql server with php code. But I don’t know why I am getting error for connection.(I tried in windows changing the “localhost:8080” to “localhost” and it worked perfectly.) MyCode: Refused Warning: XAMPP Port: Answer localhost:8080 i…
Add ‘From’ Header on email using Codeigniter
I’m working with Codeigniter in CPanel and my code already sends a mail, but when it gets to the receiver, the hostname is shown on the sender. I tried some answer to questions as : Change the …
keep getting an error while saving data into database in laravel
I am using laravel ver “laravel/framework”: “5.8.*” I want to save the data into database with post request and my post data is I have searched on this many topics but I can’t get any information …
php image delete unlink() issue on localhost
image delete unlink() issue on localhost: My Code Snippet (Not Working): if(file_exists(‘./uploads/Property/’.$imgnm)) { unlink(‘./uploads/Property/’.$imgnm); } My Code Snippet (Working): if(…
Javascript and PHP quiz based on the questions which are in the database
I’m developing an online quiz that would let the user answer questions by clicking on a few radio buttons. I want the program to use the questions that are in the database. I’ve already created the …
Laravel Search Form with Filters
I want to implement a search form in Laravel, I was watched every video on YouTube to do this, and tried many tutorials but my code doesn’t work. File web.php In my routes are a resource with CRUD of clients, which will also have a search, which I want to implement filters, by name, by state, etc……
How do I download txt web content using perl
I am trying to download data from this data page. I have tried a number of scripts I googled. On the data page I have to select the countries I want, one at a time. The one script which gets close to …
command not being found even though I am registering it Laravel 6.x
So consider the service provider, yes I know I am registering this command in two places, but just give me a moment to explain:
Symfony HttpClient GET request with multiple query string parameters with same name
I am trying to make an API request in the following format: /api/v1/courses?enrollment_state=active&include[]=total_students&include[]=term How can I do so using the HttpClient Component …