Posts by Tulio Vieira • 497 points
24 posts
-
1
votes2
answers455
viewsQ: Inquiry Manually Transaction Secure Pay Checkout
Hello, I am Trying to make a Transaction query manually by following the template passed by the author of the michaeldouglas/Laravel-pagseguro component, but when I try returns the following error:…
-
2
votes2
answers299
viewsA: Select Laravel Entering Next Record Alone
When retrieving data from the bank, String that was separated by comma I used the command: explode(',', $string); Causing String to break up But with everything she always stayed one , in the…
-
4
votes2
answers299
viewsQ: Select Laravel Entering Next Record Alone
Good evening, I have a project in Laravel and I’m having the following difficulty: I have a controller that retrieves data from my database, has a variable that receives string and this string…
-
1
votes0
answers44
viewsQ: Fullcalendar can’t make the call
Good evening to everyone I’m using the template limtless in my application But I’m not able to use the part of Fullcalendar I’m trying to use this calendar: Internationalization but I can’t make his…
-
0
votes2
answers79
viewsA: Export jQuery Datatables
to do this just use the Datatable exportOptions property: "buttons": [ { extend: 'excelHtml5', exportOptions: { columns: ':visible' } }, { extend: 'copyHtml5', exportOptions: { columns: ':visible' }…
-
2
votes2
answers79
viewsQ: Export jQuery Datatables
I have a tabla and I use Datatables, I am using the native export functionality and give an Hide in the columns my code this more or less like this: "buttons": [ 'copy', 'csv', 'excel', 'pdf',…
-
1
votes2
answers1318
viewsA: Visibility of Datatables Column
Good in research and with the tip of Caique Romero, I managed to solve the problem. $(document).ready( function () { $('#table').DataTable( { "dom": 'Bfrtip', "buttons": [ 'copy', 'csv', 'excel',…
-
2
votes2
answers1318
viewsQ: Visibility of Datatables Column
I’m using the DataTables for display and export of my tables, one of the types of datatables I use and this one: https://datatables.net/extensions/colreorder/examples/integration/colvis.html I…
-
2
votes2
answers127
viewsQ: Doubt in Mysql query
Query that I am using SELECT os_id,os_data,os_processo,os_solicitante,os_tipo,os_cliente,os_empresa,os_adverso,os_local, os_comarca,os_advogado,os_preposto,os_documentos,os_status,login_nome,…
-
2
votes2
answers120
viewsQ: Retrieving database data and calculating inputs
good evening I’m having a hard time performing a data recovery on I recover but wanted the recovery to be simultaneous I will explain better and once you see the code you will understand.…
-
2
votes2
answers48
viewsQ: How to recover the last payment?
I have the following table in my bank: "financeiro financeiro_id INT AUTO_INCREMENT, financeiro_pagamento DATE, financeiro_pid INT, financeiro_valor INT, "; In this table I record the payments that…
-
1
votes1
answer1580
viewsQ: Error in php Mailer
I am using the phpmailer function, follow the settings: $file = str_replace($comacento, $acentohtml, $file); require_once('../phpmailer/class.phpmailer.php');…
-
1
votes1
answer1181
viewsA: How to destroy all PHP sessions
session_destroy() destroys all data associated with the current session. It does not delete any of the global variables associated with the current session, nor does it delete the session cookie. To…
phpanswered Tulio Vieira 497 -
3
votes1
answer30
viewsA: Doubt with SQL/PHP
first of all you make the querry $qrysel = "select * from pack"; $ressel = mysqli_query($db, $qrysel); $obj = mysqli_fetch_object($ressel); then assemble the table <table> <thead>…
-
1
votes3
answers2439
viewsA: Popular Modal Bootstrap for User Edit
good very well from what I understand of your problem is that here you need to generate modal editing to edit users, I will publish a template for you to follow as base, is pretty simple using only…
-
1
votes2
answers939
viewsA: Error: mysqli_fetch_assoc() expects Parameter 1 to be mysqli_result, Boolean Given
So from what I can tell you’re doing it wrong try it here. I use practically the same thing in one of my applications, like the comando that you are passing to the bank is already inside the php…
-
0
votes1
answer1361
viewsA: How to view image stored in blob type
Good one of the way you can use and this code here it takes the update and saves in the folder of your application and names the photo with the user id after and just recover the photo from the…
-
-1
votes3
answers1448
viewsA: Error - fa icons (Fontawesome.css)
add these two tags to your code that will solve your problem the call of these two tags in your code automatically imports the font-awesome for your code so Sanando your problem <link…
-
1
votes2
answers809
viewsA: Breaking table into multiple pages
there is a plugin called data-Tables, which in my opinion is the best it gives you various options for tables, table data search etc ex: I believe you can use by adding these tags here in your code…
-
0
votes2
answers551
viewsA: Security Login - PDO
I use Rule that are rules every user type in my systems have a Rule, if you are an administrator you get ex Rule=0 or a normal user Rule=1 and so I check if that user has such permission to be in…
phpanswered Tulio Vieira 497 -
2
votes4
answers182
viewsA: Adjustable design for mobile
try using bootstrap : http://getbootstrap.com/ will help you a lot! Using these links, you’ll be adding boostrap to your code so you can use the same classes to make your code responsive, more…
-
0
votes3
answers151
viewsA: Display success message once in for loop
works tmb! for ($i=0; $i < count($descricao); $i++) { $id_caixa_hoje = $linha['id_caixa_hoje']; $valor_formatado[$i] = abs($valor[$i]); $inserir = mysql_query("INSERT INTO caixa_valores_extras…
-
1
votes3
answers451
viewsA: Pagination in the photo gallery
when I hit the first one works fine but the last one doesn’t even work the numbers. <!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="pt-br">…
-
1
votes3
answers451
viewsQ: Pagination in the photo gallery
Good evening everyone, I need help with the following code snippet and a photo gallery and I need 9-in-9 photo pagination I’ve tried everything and I can’t if you can help me there <!DOCTYPE…