Posts by Fernando • 9 points
4 posts
-
0
votes1
answer281
viewsQ: Active menu after refresh with localStorage
I have this code that makes the menu active and expands. <li class="menu-item"> <a href="#" class"active"> <span>Posts</span> </a> <ul class="sub-menu">…
-
0
votes1
answer1082
viewsQ: Select the previous 3 months
Hello, I have the following table: ---------------------- downloads | data ---------------------- 10 | 2016-12-01 15 | 2016-12-02 20 | 2017-01-01 30 | 2017-02-01 40 | 2017-03-01 This way I can add…
-
0
votes1
answer24684
viewsQ: Select in two tables at the same time
I have the author and sentence tables: autor: autor_id | autor_nome 1 | joão 2 | pedro frase: frase_id | frase_frases |autor_id 1 | frase do joão | 1 2 | frase do pedro | 2 3 | frase do pedro | 2 4…
-
0
votes1
answer151
viewsQ: htacces for Nginx
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 Options -Indexes I need to convert that rule into htaccess for nginx…