Posts by DeividiN • 36 points
3 posts
-
1
votes3
answers50
viewsA: Comparator difference in php
When using == it is only checked whether the two values are equal. But when you use === it is checked if the two values are equal and if there is no information it will be set as "t", never used…
-
0
votes2
answers2191
viewsA: Image Rotation with CSS
If you want to make the logo rotate, use as follows: .logo_header { transform: rotate(-15deg); position:relative; top:50%; left:50%; margin-left:-50px; width: 100px; height: 100px; /* CÓDIGO PARA…
-
1
votes1
answer112
viewsA: Change link with . htaccess
Try it this way: RewriteEngine On RewriteRule ^site/noticia/([a-z0-9-]+)/(.*)/?$ /site/index.php?op=28&cod=$1 [NC,L]…