Posts by William Santos • 32 points
3 posts
-
0
votes2
answers185
viewsA: Load codeigniter settings into external file
Carregue as informações com o config->item: $this->config->item('nome_da_config'); EX Carregando CSS com URL Completa: <link rel="stylesheet"…
-
-2
votes3
answers3061
viewsA: Update a specific DIV without refreshing the page
<script> setInterval(function(){ $('#ID_DIV_PARA_ATUALIZAR').load('PAGINA_A_SER_CARREGADA_NA_DIV.php'); }, 1000) /* tempo em MS para atualizar*/ </script> …
-
2
votes1
answer445
viewsA: ACCESS LEVELS - PHP + SQL SERVER
Easiest way in this case is to use your session to redirect when the user logs in the same way you did in $_SESSION['nivel'] == 11 makes a separate page these settings and use a require_once and on…