Posts by Reginaldo Boeke • 113 points
13 posts
-
1
votes1
answer948
viewsQ: React Native: Remove goBack() function from Android’s physical button?
I need to remove the Back Screen Action from the physical button of Android at any given time. Basically, I have a method that shows my Searchbar, while the Searchbar is visible, I need the action…
-
0
votes2
answers227
viewsA: Fixed size DIV with CSS (generate PDF with MPDF)
The solution I found was to add position:fixed; the class .container-ficha. In so doing he obeyed the width and height.
-
0
votes2
answers227
viewsQ: Fixed size DIV with CSS (generate PDF with MPDF)
I need a DIV with fixed size in centimeters width:12.5cm; and height:7.5cm;. I can keep these sizes when loading the view, but when I use PHP’s mPDF class, it ignores the height and increases it…
-
0
votes0
answers153
viewsQ: Codeigniter 3: Batch update update_batch()
I need to batch update a table, I have an object called $data as the example below: Array ( [0] => stdClass Object ( [nota] => [frequencia] => [temaTcc] => [idNotaFreq] =>…
-
0
votes2
answers1675
viewsQ: Tooltip Bootstrap 4 does not work
I’m trying to use Tooltip with Bootstrap 4, but it just doesn’t show up: In HTML it looks like this: <a class="btn btn-sm btn-warning" href="" data-toggle="tooltip" data-placement="top"…
-
5
votes1
answer144
viewsQ: Mount two-dimensional PHP array
I need to mount a two-dimensional array through 2 arrays received via post. Example of arrays I receive: Array ( [0] => disc03 [1] => disc04 ) Array ( [0] => prof03 [1] => prof04 ) From…
phpasked Reginaldo Boeke 113 -
0
votes0
answers283
viewsQ: php - How to set maximum run time using interval on each loop?
Good morning! I need to send some email reminders according to some conditions. I built a script that queries the information in the database (Mysql) and triggers the emails. The script is working…
-
1
votes1
answer2134
viewsQ: Include CSS when generating a PDF using PHP’s MPDF class
Good morning! I need to generate a report, in this report I have some CSS for better organization. I can generate the PDF, but the styles are not loaded next to the HTML. I’ve tried to put the CSS…
-
0
votes1
answer314
viewsQ: PHP MVC - How to run Model methods?
Good afternoon! How do I execute a method of the Model class, in specifying an insertion method to the BD, in case I need to send the Form data. This is the form in View (sector.php): <form…
-
3
votes1
answer177
viewsQ: Datatable Server Side with JOIN
Good night! I started using Datatable recently, I’m using with the server-side feature. I need to relate 2 tables with INNER JOIN, I saw that there is a "difficulty" in doing this type of procedure…
phpasked Reginaldo Boeke 113 -
0
votes0
answers187
viewsQ: PHP Session Control / jQuery
I’m creating a system where I have user groups with specific permissions. I need to do a session control at the time of login, storing the user permissions in session variables so that they are…
-
0
votes2
answers1361
viewsQ: Insert content from an HTML file into a DIV - jQuery/Ajax
I’m making a system GED here for the company where I work (very simple, just to organize better). I’m developing the screens first, then connect with the comic and make things work. I have a menu…
-
0
votes2
answers41
viewsQ: How to check form values before sending it Javascript / jQuery
I need to check two fields of a form before sending it. I need to check that the 'stock_minimum' field is smaller than the 'stock_maximum' field. I have made numerous attempts and none worked well,…