in my current project I want to fill a bar chart with summed data for each day of a month. I get the required values from the database, but I can’t get the array created in the right format. So far, the individual values are just lined up and I can’t read them out in the JS. I have tried
Tag: php
Find all descendants in array
At first look it was a simple task, but when I tried to solve it I became confused. I have PHP array, where keys are top parent IDs, values are child IDs. Some child IDs have their own children. That children may have own children and so on. My goal is to get a new array, where all top parent
PHP form validation not functioning having copied the tutorial code
I am hoping the community can give me a little insight into what is not working with my code, I am following a Udemy course. I have followed the accompanying video which developed an undefined variable error, which after doing some research I believe I have fixed by declaring variables as empty strings being …
Input Field to Laravel save: store datetime when adding just the date
Goal: have two columns (datetime) save an input field that only takes in date I would like the start date to save 11/11/2021 00:00:00 and the end date 11/12/2021 23:59:59 (only the date can be changed) from a text field that a user can only place a date in the text field: snippet of my store function: the cod…
Setting up PHPunit – PHP CLI is not executing the shell script
I’m in a multi developer program. The other developer installed PHPUnit via composer and successfully is running tests. I took the composer files, ran composer update, but when I try to run the tests, I am receiving this error: Output: This is the content of the phpunit shell script. The shebang first l…
How to sort numbers containing current year in prefix
I am having trouble sorting the job numbers in my project. My client requirement is to store the job numbers in the below format:- For example:- The current year is 2021 so the job number will be like this:- When the year changes it should start again from 1 and so on for the next year. For example:- I had
How to annotate Laravel Collection elements during iteration
I was thinking about how to annotate types in PhpStorm. I believe PhpStorm is using Psalm to resolve types, but I can’t find how to annotate type to get suggestions here: $row in my app will always be Collection object and I want to have it marked somewhere here with annotations. Does anyone have an ide…
Adding day/incrementing with a carbon formatted date
I’m using carbon to get today’s date and format it in a laravel blade template, which is not a problem at all, but when it comes to incrementing I’m having an issue I’m currently testing with just adding a single day, but I want to actually create table headers for today and the next 7…
Is it possible to refresh a php site when a post request is detected? [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 last year. Improve this question Let say a sensor is sending data to my php-dashboard via post requests. Is i…
How to call PHP script from Mulesoft?
I am in process creating resource/api in Mulesoft and this need to run some PHP script. If I use engine as “php” am getting below error – “Scripting engine ‘php’ not found. Available engines are: Oracle Nashorn” So, how to enable php engine? Answer PHP is not a valid …