Posts by Quati_Maldito • 107 points
9 posts
-
-3
votes1
answer61
viewsQ: htaccess PHP friendly URL
Talk, you guys, all blaz? I have the following htaccess: RewriteEngine On RewriteBase /pasta1/pasta2/ RewriteRule ^([0-9A-z_-]+)/(.*)/(.*)/ detalhes_item.php?id_param_1=$2&id_param_2=$3…
-
2
votes2
answers235
viewsA: Code of some branchs disappeared after merge
For the record in case someone goes through something similar. We concluded that one of the team devs made a new Feature and the basis of this was an old branch, without the updates of the last few…
-
0
votes2
answers235
viewsQ: Code of some branchs disappeared after merge
I have a very strange situation (probably vacilo right...) here in my repository. I have a branch of DEV and several other of Features and bugs. With each branch of Feature or bug, we merge with…
-
0
votes0
answers32
viewsQ: Media Queries for retinal monitor
I’m trying to make use of media query for retinal monitor (Macbook pro), but I can’t get the code to be considered by the browser at all, I tried several ways, considering the link. The meta tag of…
-
1
votes1
answer73
viewsQ: background-image Animation with CSS
blz? I have a "" with Parallax (parallaxie. js) and background image animation with CSS (Keyframes). Follow the link: https://codepen.Io/Aguinaldo-Aranda/Pen/zLJwrM It turns out that the animation…
-
2
votes4
answers118
viewsQ: select dinamico
good afternoon! I have a table like this: id | valor | nome_campo | item_id (fk) ---------------------------------------------- 1 | 9 | campo_1 | 22 2 | 10 | campo_2 | 21 3 | 2 | campo_2 | 22 4 | 3…
mysqlasked Quati_Maldito 107 -
5
votes2
answers3128
viewsQ: Angularjs - accents
I’m using AngularJS and Wamp Server. In the program I am doing I have an array: ($rootScope.fruits = ["banana","maça","laranja",'época'];) That you’re giving the seats a problem. So I put in the…
-
1
votes2
answers153
viewsA: Can you perform a reset when accessing the page?
You will have to use js or jquery, there are several ways to do this. $(function() { $('#id_do_form')[0].reset(); //ou $('#id_do_form').trigger("reset"); }); There are several other means.…
htmlanswered Quati_Maldito 107 -
0
votes1
answer117
viewsQ: Overlay Section
I have more or less the following structure: <!DOCTYPE html> <html lang="pt-BR"> <head></head> <body> <div id="tudo"> <header> <nav></nav>…