Posts by Nuno Maximiano • 71 points
8 posts
-
0
votes1
answer118
viewsA: Uncaught Syntaxerror: Unexpected token 'Else'
The code has both Else in a row, being the condition if a condition of true or false It should have a code with the following structure if(condição) { //código quando a condição é verdadeira } else…
-
0
votes1
answer79
viewsA: codeigniter development subfolder does not work
I think your problem is only in the config file you should set the $config['base_url'] = ENDERECO_BASE/PASTA_DE TESTE;
-
0
votes1
answer102
viewsA: PHP - Move Controller to Codeigniter view/ Active menu
Your problem is the kind of data you’re trying to send into view this is waiting for an array with the data you must correct in your controller for something of the kind…
-
1
votes1
answer437
viewsA: How to block access to a htaccess page?
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?site_exemplo.com.br$ [NC] RewriteRule ^(noticias/como-bloquear-acesso-a-pagina) - [L,F]
-
0
votes3
answers172
viewsA: Modal Bootstrap window does not display styles in components - Asp.net MVC
Your problem with CSS, shall increase the z-index of the modal element
-
1
votes1
answer176
viewsA: Limit the number of rows in the second table?
If your goal is just to limit the results with no further conditions you were on the right track and you should use $this->db->limit(N) being N the number of lines you want to display…
-
0
votes1
answer69
viewsA: Deleting a Specific Image from a File
since you do not indicate which error you are getting, it becomes more difficult to help. but it may be for lack of loading the lib of the responsalvel condingniter by the files you can do this by…
-
2
votes1
answer286
viewsA: Run php within a javascript condition
PHP runs on the server side, and it always runs before the Javascript code, which runs on the client side. So that condition will not work, if you want to send client data to the server you have to…