Next Person,
I have a form to upload any image ...
<form id="form-upload" enctype="multipart/form-data" action="url" method="post">
<input type="file" name="image" id="image" />
<input type="submit" name="salvar" valu...
I have 2 types of checkbox and I need to select one of the two to display a field of type input text with the information coming from the database. The input field will be disabled, that is, it will only be displayed.
Doe...
php
Can anyone give me some tips on implementing a part?
I have a text input inside the while loop: "<td><input type='text' value='".$valor['url_video']."' style='width: 400px;' id='url-video'></td>". , inside this...
I'm breaking my head to try to solve this problem, but without success ...
I have a virtual store created for another programmer who disappeared. To vary code is undocumented.
To calculate the freight in the shopping cart it calls another...
I have a page called DLL.php that contains a DataTable ( link ). I used the DataTable plugin's interface to dynamically load the contents of the DataTable. The last column of the table contains only checkboxes. I want these checkboxes to trigger...
$.getJSON(url, function(json){
$("#pf_endereco").val(json.logradouro);
$("#pf_bairro").val(json.bairro);
$("#cidade").val(json.localidade); <----
$("#estado").val(json.uf); <----
How to put locality and uf informatio...
Code of my main page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Salão de Beleza –...
I have a program where he creates cookies with the data that the user typed in the <input> fields. This all through AJAX. So far no problems, but in this file I make the request, it returns me the data of the cookies created. What I...