Posts by Inove Commerce • 9 points
7 posts
-
0
votes2
answers496
viewsQ: Upload webp images
I would like to do something similar to the link below with the images of my site, using the webp format: example on this site When I try to save the image by this link, by Chrome, it saves in webp…
-
1
votes1
answer234
viewsA: Formatting a PHP string in UTF8
I resolved with html_entity_decode() the final code is like this: $descricao = html_entity_decode($descricao);…
-
-1
votes1
answer234
viewsQ: Formatting a PHP string in UTF8
I have in a $variable the following content: I would like the words "metallic" "plastic" "dimensions" to be normal. What should I use?…
-
-2
votes1
answer103
viewsQ: Array reading with JSON
I have the following array: Array ( [xml] => { "orders": [ { "code":"PedidoTeste-1508156986545", "channel":"PedidoTeste", "placed_at":"2017-10-16T10:29:46-02:00",…
-
0
votes1
answer305
viewsQ: Redirect URL to mobile version with . htaccess
I’m making the mobile version of a website and I need it to redirect any page to its mobile version: Ex: If the accessed page is: https://www.website.com.br/seguranca should redirect to…
-
0
votes3
answers6007
viewsA: How to Customize Password Recovery Email (Laravel 5.4)
I think that’s the file: Resources/views/vendor/Notifications/email.blade.php
-
0
votes0
answers414
viewsQ: Send data to a controller via jquery with no return
I’m working on a project in Laravel. In a certain part I need to send data to a controller via jquery and from the data obtained in the controller, redirect to another view. How can I do that? I…