Posts by Luizz • 189 points
8 posts
-
6
votes1
answer264
viewsA: Form does not pass variable - MYSQL to PHP
removes inputs[Hidden], they are overwriting the previous inputs[text] <input type="hidden" name="nome" value="<?php echo '$nome;' ?>"> And put in their value(inputs[text]):…
-
0
votes1
answer221
views -
3
votes3
answers17307
viewsA: PHP give refresh on a page
It would be something like: header("Refresh: 20; url = menu.php"); You put Refresh at 20, if it crashes it will already come out
-
-1
votes2
answers1737
viewsA: Exporting HTML form to PDF with input field initialized by js does not appear in the PDF document
Using jsPDF- http://mrrio.github.io/jsPDF/# var pdf = new jsPDF('p','pt','a4'); pdf.addHTML(document.body,function() { //Funcionou ! });…
-
1
votes5
answers801
viewsA: Is it possible to upload files without using PHP?
Upload would be action of sending data from a local computer to a remote computer or server. 1 - Could be on local network. 2 - Dropbox is a file storage and sharing service. Using this here 3 - Use…
-
1
votes2
answers980
viewsA: Enable fields from the completion of a previous field
I made an example in Jsfiddle here, used Bootstrap and jQuery, I have numbered the steps with the date-step attribute, and the required field(s) (s) attribute 'required'; Jquery Thus the 'Prev' and…
-
3
votes2
answers1251
viewsA: Form Filters - PHP
An example ! $filtroList = array('estado', 'cidade', 'quartos'); $where = array(); foreach ($filtroList as $filtro) { if(isset($_GET[$filtro]) === TRUE && is_null($_GET[$filtro]) == FALSE){…
-
0
votes3
answers1254
viewsA: Effect on jQuery
You can use the plugin jQuery.appear . $('img[src]').appear(function(){ $(this).show(); });…