Posts by R. Wegner • 37 points
5 posts
-
3
votes2
answers184
viewsQ: Bring sql record even if you don’t have the necessary accent
I need to bring a record called Vidraçaria in a survey, how can I bring this record by writing only Glassware in research? Or bring water seeking only agua The search works normally when the word is…
-
0
votes1
answer42
viewsA: Change image names before multiple upload
I managed to fix the code this way $diretorio = "../empresas/$PASTA/fotos"; $imagem = isset($_FILES['imagem']) ? $_FILES['imagem'] : FALSE; for ($controle = 0; $controle < count($imagem['name']);…
-
0
votes1
answer42
viewsQ: Change image names before multiple upload
I can send the images to the server, but when I try to change the name nothing is sent: Code: $diretorio = "../empresas/$PASTA/fotos"; $imagem = isset($_FILES['imagem']) ? $_FILES['imagem'] : FALSE;…
-
0
votes1
answer84
viewsQ: Insert value into input value when expanding image with javascript
I have the following code (Its function is to expand the image into a div where has the id #expandedImg. function myFunction(imgs) { var expandImg = document.getElementById("expandedImg"); var…
javascriptasked R. Wegner 37 -
0
votes1
answer168
viewsQ: Form in stages, how to ignore some input and proceed?!
I have the code ready, but it only allows me to advance the step if all the inputs are filled, it would be possible to ignore some inputs and move forward ? Follows the code var currentTab = 0; //…