Posts by Vanderley Rocha • 11 points
2 posts
-
1
votes3
answers1614
viewsA: How to increase session time in phpMyAdmin on Ubuntu?
Another way to solve it is by changing the PHP configuration file (php.ini). Look for the line containing the code below: session.gc_maxlifetime = put the value you want (in seconds). If you want a…
-
0
votes1
answer45
viewsA: Fill a select by clicking the previous select
It can be solved using Jquery Ajax. It would look like this: <script> $('#municipio_id').change(function () { $.get('/rota_para_regionais/', { municipio_id: $('#municipio_id').val() },…