Posts by Antonio Neto • 41 points
3 posts
-
1
votes2
answers76
viewsA: I would like a layout like this but my <aside> is not joining with the footer
Try to put the position absolute and the height 100%. aside { background-color: firebrick; padding: 1em; width: 15%; height: 100; position: absolute; }…
-
1
votes2
answers715
viewsA: What does && ! mean in PHP?
That: if (is_home() && ! is_front_page()) It’s the same thing as that: if (is_home() && !(is_front_page())) That is, on behalf of the !, the condition will only be true if the…
-
1
votes1
answer44
viewsQ: How do I add a value to my database?
I need that if the value is null, it adds the variable getid() to the database. string comando = "SELECT COUNT(*) FROM usuarios WHERE username=@Usuario AND senha=@Senha AND tipo=1"; var connection =…