Posts by Everton Thomazi • 43 points
6 posts
-
0
votes1
answer180
viewsQ: Align <ul><li> with 4 or 5 items
I have a page in PHP that presents my products, some items have 4 sizes and others 5 (P, M, G, GG and XGG*). When I have 5 sizes, the alignment is correct, but with 4, it is aligned on the left,…
-
0
votes1
answer49
viewsQ: Add values from a php table
I have a table that returns my orders of the day, it is working perfectly, but I would like to add a "summary" in it, with the sum of daily values (number of orders and total order value). The step…
phpasked Everton Thomazi 43 -
0
votes3
answers599
viewsA: Adjust time in PHP string
I managed to solve by doing the following, in MYSQL the 'date' column was set with "current_timestamp()", then I left NULL and started sending the date on my website as follows > $data["date"] =…
-
2
votes3
answers599
viewsQ: Adjust time in PHP string
My hosting is configured for UTC (GMT 00:00) and I can’t change through Mysql, due to blocks being a shared host. My PHP code brings results of date/time of orders, but it is with 3h above (due to…
-
1
votes1
answer98
viewsQ: Search results in Mysql database with Codeigniter
I need to find a result in the database, and show it on the cart screen. I am using codeigniter, already created the model and controller and I am calling in the view, but the result does not come.…
-
0
votes0
answers53
viewsQ: Create Timezone function for PHP and Mysql UTC
I am migrating to a Cloud hosting where Mysql is with Timezone UTC, I could not execute the commands to switch to GMT -3 and support does not give me another option. Today my requests are saved in…