Posts by gezer • 421 points
25 posts
-
0
votes2
answers970
viewsA: Arduino Ethernet Shield and PHP
Another question for this same code how do I return and print what was processed on the server side on the serial monitor?
-
0
votes1
answer508
viewsA: Header and footer in mpdf works for nothing
if you have an error "Warning: Cannot Modify header informati on " in functions.php You must change on line 66 and 67 in the includes/functions.php file $str =…
-
1
votes1
answer80
viewsQ: Run php file with javascript
Hello I need to run a php page, I just want to send the id to execute a basic function but n I am therefore doing this with javascript. <script type="text/javascript"> function removemen(id){…
-
0
votes2
answers167
viewsA: Display div when clicking another, several with javascript
Here’s how I handled it. I took the value of the id with click and in the same place that I take. <script type="text/javascript"> function passar(id){ var display =…
javascriptanswered gezer 421 -
0
votes2
answers167
viewsQ: Display div when clicking another, several with javascript
Hello personal I need to display a text that is in a certain div in a listing that I did the problem that the div and the class have the same name, for example below. <div class="item"…
javascriptasked gezer 421 -
0
votes1
answer1192
viewsQ: Get a certain part of html from another javascript page
Hello everyone wanted to get a specific area of what this coming from the other page for example what comes from the other page I get the div with id as I would do this with my script? <script…
javascriptasked gezer 421 -
0
votes1
answer1590
viewsQ: Print variable in div with javascript
Hello doubt maybe silly but I am not able to solve personal, the following have a certain value javascript (variable) and need when the person enters the site print this variable in DIV? for example…
javascriptasked gezer 421 -
2
votes1
answer405
viewsQ: Pass value parameter by clicking on radio input type, with php, jquery and mysql propagating
Hello, good afternoon everyone, guys I’m having a doubt I do not know how to proceed I need to send the value that is inside the value input type radio to a variable jquery remembering that I even…
-
0
votes2
answers8580
viewsQ: How to move files with PHP copy?
Using PHP copy, how can I copy the file to a particular folder without having to indicate the previous file name? Example: <?php // aqui eu indico o diretorio onde esta e o nome do arquivo…
-
0
votes1
answer150
viewsQ: Change table ordering by clicking on JS images
Good afternoon I need to change the ordering of the table column to descending or crescent by clicking on the images. up and down. <table border="1" width="140px" class="sortable"> <tr>…
javascriptasked gezer 421 -
2
votes1
answer1207
viewsQ: Change variable when selecting another value in select in JS
How could I change the param value for what I selected in select? param is in the link I’m sending to another page. It would only be the id I selected in select. var meu_select = $('#meu_select');…
-
0
votes1
answer289
viewsQ: Hide menu by clicking out and exit js
How to hide ul by clicking off the menu or hovering off the menu? I tried but failed. function aperfil(opthard){ if(document.getElementById(opthard).style.display== "none"){…
-
1
votes1
answer1325
viewsQ: Save array to a php variable
How to save all data from an array to a single variable ? example I call a query of a determianda column of the bank and Gero a while and wanted to put in a variable. Maybe the right thing would be…
-
-2
votes1
answer81
viewsQ: Creating data array from a php table
How to save data from a table so that each row follows the column date. Example: Line1 col1 = descricao1 and line1 col2= valor1 and col2linha0= data1 saving > descricao1 + valor1 + data1 How to…
-
-2
votes1
answer113
viewsQ: How to send names from a php loop to another input using JS
How to pass data to another input other than id? example value name not id. function passar(id){ var valorA = document.getElementById(id); var nome = document.getElementById("nome"); nome.value =…
-
3
votes1
answer451
viewsQ: How to send data from a php loop to an input using JS
How to send a data from a php loop where each input will be able to be sent to another input that is out of the php loop, I’m trying in javascript. I receive od data directly from the database.…
-
4
votes2
answers582
viewsQ: Print two arrays side by side
How to join two arrays being the index of the array 1 follow the index of the array 2. Data for joining: descricao array1= datacol1, datacol2, datacol3, datacol4 array2= collinha1, collinha2,…
-
1
votes1
answer1644
viewsQ: Save data to a table in the Mysql database using php
How to save data from top of column and row example have description(row) + date(column) + value (column)= same column row. <form name="frmitementrada" id="frmitementrada"> <table…
-
4
votes1
answer1993
viewsQ: How to calculate currency by appearing decimal places in JS?
I have a dynamic calculation to do, without having to click buttons. I did, but the part I don’t know how to make it appear like decimal places, since we’re talking about currency. function…
javascriptasked gezer 421 -
0
votes2
answers141
viewsA: Increase table without selecting manual id.
var contador=0; function incrementarlinha() { if(contador==8) alert('Maximo permitido alcanzado: 9'); else {…
javascriptanswered gezer 421 -
0
votes2
answers141
viewsQ: Increase table without selecting manual id.
good morning, I want to do the following I have a table that hides the part I want but in java script I just hide what I want if I select the id of the part of the table but I want to do next when…
javascriptasked gezer 421 -
6
votes0
answers407
viewsQ: Add or decrease columns and rows in the table
I have a table where I want to add or decrease new rows and columns, through the button click event, I tried this way, as the code below, but it’s not working very well: This example of how it…
-
0
votes2
answers1124
viewsA: Pass data to another input
look I only had to create this scheme I increased the script by putting one more Function so that with the name of selecting everything being so possible to capture. and created a for in php to…
-
-2
votes2
answers1124
viewsQ: Pass data to another input
good evening guys I’m with a doubt which best pure php option or with javascript remembering that I have to take the past data to send to the bank in another. It is currently using java script. but…
-
1
votes1
answer373
viewsQ: Pass multiple data to an input, via a select
I’m trying to get past several data for a input, I had almost no idea it would be a textarea for the amount but it would be another select ? This way: I’m trying to keep it that way: If anyone can…