Posts by Daniel Gomes Da Silva Moreira • 73 points
8 posts
-
0
votes2
answers166
viewsQ: form-check-input (check if no option has been selected)
reference link: http://www.dapweb.org/dapdaniel/rosiane/temporada.php I have a form with some options arranged in check boxes, to change them according to the click I am using AJAX, the following…
-
0
votes1
answer55
viewsQ: Datepicker - Add events to datesDisabled
I would like to add two events like, Alert (onclick) and on mouseover, specifically to the fields of disabled dates, datesDisabled. The structure of my Datepicker is functional, I will show here the…
-
1
votes0
answers110
viewsQ: Resize Cellular Images
I have a post page, which receives this setting for the images that comes from the database: .post-content img{ max-width:100%; } What happens is, when you see the photo on the phone, they get…
cssasked Daniel Gomes Da Silva Moreira 73 -
3
votes0
answers188
viewsQ: PHP (permission level on the server)
I created a php application that uploads files (PDF, images and JSON) that works correctly on my PHP 5.2.17 server, but on the client server, the application only works if I change the site folder…
-
8
votes3
answers1038
viewsA: Turn m:s into seconds
$tempo_total= "4:44"; sscanf($tempo_total, "%d:%d:%d", $horas, $minutos, $segundos); $tempo_segundos = isset($segundos) ? $horas * 3600 + $minutos * 60 + $segundos : $horas * 60 + $minutos; Running…
phpanswered Daniel Gomes Da Silva Moreira 73 -
0
votes2
answers220
viewsQ: php global variables
Hello, I think this is simple, I am working on a project in which I need to start 3 strings on 80% of the system pages, in php, so what would be the best method for the user to just change the text…
-
1
votes2
answers104
viewsQ: json_decode($data) PHP
I’m using the json_decode on top of a Geojson file. All I need is to print on the screen a Feature specific to the file, which has the following structure: var GEOJSON = { "type":…
-
1
votes2
answers651
viewsQ: pass js value to another page in the action form
Hello, I have a simple form with some fields, which I send the values to another page via form action: <form class="form-horizontal" action="novapagina.php" enctype="multipart/form-data"…