I used a guide to redirect session requests to a DB call so I could maintain a session on front and backend PHP (this guide: from : https://culttt.com/2013/02/04/how-to-save-php-sessions-to-a-database/), but that leaves me with a question. I can see that the session data is stored JSON in the db. Near as I ca…
Tag: php
How to convert Two dimentional array into Three dimentional in PHP?
I have below two dimentional array $data = [ [‘category’=>1,’attribute’=>1,’option’=>1], [‘category’=>1,’attribute’=>1,’option’=>2], [‘category’=>1,’attribute’=>2,’…
PHP Insert JSON to MySql Multitable
I’ve this multidimensional array to insert into mysql database : { customer_id: “25”, total: 238000, firstname: “oci”, product: [ { product_id: &…
If less than 1 month convert timestamp to time ago in PHP
I’m sure there are many similar questions but I already tried many of them it seems impossible to get the results I want. So what I want is to convert the timestamp on my WordPress posts to show “…
PHP array isn’t displaying in page
The list of notes should be displayed within the ul li spans, any reason as to why they aren’t showing and instead the array is showing at the top of the page? The database connection appears to be …
Limit WooCommerce products in cart only from one custom taxonomy
I’m trying to restrict customers on my Woocommerce store to only be allowed to order products from 1 “supplier” at a time. I am defining the “Supplier” by a custom taxonomy called &…
How to check control keys within string by php
I have string as below: abccdefx7f (notice that the ‘x7f’ is Del key on keyboard) I want to check if the above string has control key or not ? Control keys include: Del, Tab, Esc, F1 ~ F12, Shift,…. Please help me the solution, I am using PHP code. Answer There, You can use the phps ctype ex…
laravel, use of updateOrCreate inside forloop
I want to use updateOrCreate in order to prevent duplicate I have stores and need to store for every store its working hour (days, open time, close time, available) Day Available Open Close Monday [checkbox] [input] [input] Tuesday [checkbox] [input] [input] Wednesday [checkbox] [input] [input] but I still ge…
Problems with CSS search results on web sites [closed]
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 1 year ago. Improve this question bro, if I may ask I have a CSS problem on the web, if I search the result of the web from Goo…
get folders and files like in a file explorer
I’m confused about all the file system functions in php (glob, scandir, opendir…) I simply want a list of folders and files – like in a file explorer something like this: Any help? Answer One approach :