Posts by Caroline Silveira • 103 points
13 posts
-
0
votes1
answer569
viewsA: table dynamic javascript write in mysql database
I added in js the following code. $.post("gravarBanco.php", {retorno:retorno}, function(retorno){ }) and I did the Insert by the Save.php file of the results via POST. Thank you.…
-
0
votes1
answer569
viewsQ: table dynamic javascript write in mysql database
How do I take the table inserts and write to the database ?. Follows my code. function addItens () { // Elemento textarea: const texto = $("#texto"); // Elemento table: const table =…
-
0
votes1
answer83
viewsQ: Array only shows one line
I have the following Code, only it appears only the first line when I click send, and I want it to appear as I add more products. NOTE: FOR ADDITIONAL MORE PRODUCT, IT WORKS. I CAN’T USE THE FOR TO…
phpasked Caroline Silveira 103 -
1
votes3
answers253
viewsQ: Separate zero from dates
Guys I’m having a hard time, like I do to take out the zero when I pull the date for a variable ? Example: $mesAtual = date("m"); var_dump($mesAtual); resultado: 06 ESPERADO: 6…
-
1
votes2
answers1069
viewsQ: Send email once a day
Good Afternoon, How do I send email once a day. I use phpmailer. I tried using while, but don’t know what function determines the amount every 24 hours. my code: $assunto = "[RemocenteR] Nova Tarefa…
-
0
votes0
answers120
viewsQ: Send email as Framework Codeigniter?
I have the following code on functions, but I’m having trouble knowing where I put the e-mail who will receive the registration. Follow the code: <?php require_once('../config.php');…
-
0
votes0
answers102
viewsQ: Fullcalendar put image in different sql
Guys I have a calendar of API FullCalendar, he pulls the events of the bank, until there quiet, he pulls well, but for each sql, because the information is from several different tables, I would…
-
2
votes2
answers319
viewsA: Add title when hovering over event
I used this code within the eventRender. $(element).tooltip({title: event.title});
-
1
votes1
answer499
viewsQ: blank pdf with mpdf
Galera I have this code where it returns me values direct from the bank, but at the time I click pdf, it appears only the company logo. $conteudo_html = ""; if (isset($_POST['pdf'])) {…
-
1
votes0
answers182
viewsQ: How to put the address in Mark maps
Good Afternoon Guys, I have the following code below and I would like to know how to include the address in the Marker, because I own the lat and lng in the database of all points. (That and a gps)…
-
1
votes1
answer267
viewsQ: Sequential number in a dynamic form
Guys I have this JS to be able to duplicate a record: function duplicarCampos(){ var clone = document.getElementById('div_dados_historico').cloneNode(true); var destino =…
-
0
votes0
answers66
viewsQ: Assign CSS in jquery
I have the following code, how do I assign a display: block inside jquery ? because I want the fields to appear without having to click on "add", it will appear automatically the quantity, as I…
-
2
votes1
answer176
viewsQ: Dynamically limit inputs
I’m a little young in jQuery and would like to know how I do to limit the size of input dynamically inserted. An example: in the code below the user can enter how many inputs want, however I wanted…