I have a form and there is a field in this form called dimensions and users MUST enter a value like this: 10x10x10 So I am separating length, width and height by x. But now I don’t know how to make this validation with Laravel: So the question is: How can I force users to separate each dimensions by wri…
How can I set an api token in php?
I am currently working on my website, so at the moment I have a website which I made with Bubble.io (no-code), and what I want to do is develop a CRM website with php , what I want to do is connect my database from my Bubble.io website to be able to use the data on my CRM website, Bubble.io
How to redirect a user to different dashboards based on a level field in the ”’users”’ table in Laravel Breeze?
Please forgive me if my question is too generic but I am at my wits end. I have a users table with a level field as shown given below: $table->unsignedSmallInteger(‘level’)->after(‘password’); I want to redirect the user to different dashboards based on the value of the level fie…
Natural array sorting with proper decimal support in PHP
I want to sort an array with numbers in natural order, so numbers with a bigger value come after smaller ones like this: This is what I get as result, which is not the result I need, decimals are not threated correctly. There is already a similar question Array Sorting in php for decimal values but no fitting…
Can not install php7.4-soap on Debian 9
I am using Debian 9, and I recently upgraded PHP from 5.6 to 7.4. I was hit by the Class ‘SoapClient’ not found error when running an old PHP script, which worked very well under PHP 5.6. The phpinfo() lists “SOAP” module but it doesn’t have a dedicated “soap” section…
How to get object id from array using php mongod
I have a array $document after query findOne() I want get 60d2f531a5476f4eb220402b by use $document[‘_id’]->__toString(); but it never work Answer The stdClass object does not have any methods by default, so you address the $id field like this
How to send Apple push notification to specific users
I have managed to get push notifications working but I have trouble on how to send notifications to specific users. Perhaps using a customer number or name etc. I don’t know where to even start. I have spent weeks reading hundreds of web sites and I can’t seem to work it out. These are just a few …
Websockets file upload is corrupted (or wrongly encoded) – PHP and JS
I´m working on websocket scripts in PHP and JS and have issue with saving a file (img) Sending from JS: Saving in PHP It saves the file, but it is corrupted, or wrongly encoded… The uploaded picture is slightly smaller (few bytes) and there is nothing readable in hexeditor (while in original I can read …
Unique validation with 2 columns – Laravel 8.x
I’ve been trying make my validation so that an extension must be unique to it’s own company but not to other companies. Here is my DB table: And my validation rule looks like this: But still I got errors saying that the extension number is already taken. It seems that the Unique rule doesn’t…
What the template_content should be in case that template itself has no need for it (eg template has no mc:edit)?
I replaced the mandrill/mandrill package with mailchimp/transactional. Also I have a tamplate named MYTEMPLATE-001-GR with mergevar name. And I try to send an email using that template: But the response is the following: Meaning I should provide some value in template_content but my template has NO input fiel…