Posts by Edson de Senna • 41 points
4 posts
-
0
votes1
answer73
viewsA: How to call a CODEIGNITER method in a TWIG view
You can call the countCurtidas method within the method that searches for the posts and loads the view and pass this number by pârametro to view as well as the posts, or you can also call ajax to…
-
0
votes1
answer88
viewsA: Ionic - Custom buttons in google maps
Since Ionic uses html to render the elements on the screen, you can create the buttons and position them with 'position: Fixed' on the map element.
-
0
votes1
answer41
viewsA: Conversion Unixtime to another format
The unixTime value is coming as a string, and the $timestamp parameter is not accepted by the gmdate() function. Convert to number and pass as parameter to function.
phpanswered Edson de Senna 41 -
1
votes1
answer70
viewsA: Convert time obtained by the database from ("Y-m-d H:i:s"); to ("Y-m-d-H-i-s");
By default the PHP date function expects the parameters for Day, Month and Year to be separated by '-' and the parameters of Time, Minute and Seconds per ':'. To convert to the format you want, you…