Posts by HawkB • 95 points
6 posts
-
1
votes2
answers76
viewsQ: Problems with download in Codeigniter 3
In the view I created this link: <td> <?php echo anchor("./anexos/cartao-confirmacao.pdf", "<i class='glyphicon glyphicon-arrow-down'></i>", ['class' => 'btn btn-primary…
-
1
votes1
answer151
viewsQ: error while trying to download file in codeigniter 3
i made a function to upload files and this works properly, now in my view I added a link to download the file. link in view: <td><?php echo…
-
2
votes3
answers1389
viewsQ: View array value in php
I’m putting values in a array and I need to display these values on the side of the titles in th of a table. I don’t want to use a loop to traverse the array, I want to access the value through the…
-
2
votes2
answers45
viewsQ: Variables are not receiving input value in PHP
I have this form to send messages to the email: <form action="contato.php" name="sentMessage" id="contactForm" novalidate> <div class="row"> <div class="col-md-6 wow fadeInLeft"…
-
2
votes0
answers456
viewsQ: Browse table by jQuery
I need to scroll through a table to know if an element already exists in the first column. Table: <table id="tabela-resultado" class="table table-bordered table-striped table-hover">…
-
1
votes1
answer973
viewsQ: compare two dates in jQuery
Good morning $("#salvar").on('click', function(e){ var startDate = new Date($('#data_abertura').val()); var endDate = new Date($('#data_encerramento').val()); alert(startDate); if (startDate >…