Posts by Gustavo Viana • 23 points
4 posts
-
0
votes1
answer126
viewsQ: How to save php files with utf8 characters?
When I name a php file with utf8 characters, for example 'çá.php' the local server does not open the file. I really need names utf8 to name these files, but it is possible to do some kind of…
-
2
votes1
answer50
viewsQ: Algorithm C. Why does the string "Why" return and does not return numerical values?
I wrote an algorithm in C to write on the screen ordered pairs of a function, with input of x integer numbers. int main(int argc, char *argv[]) { int x,i; x = -1; do{ system("cls");…
-
0
votes2
answers445
viewsA: Centralize dropdown menu in css
To center the menu, I used the flex display, which was suggested in the comments. The problem persisted, but I discovered it was due to a number of adjustments, for example the yellow background was…
-
0
votes2
answers445
viewsQ: Centralize dropdown menu in css
I searched the code needed to build a dropdown menu in CSS. What I found was a functional menu, but it was left-aligned. Then I looked for how to align elements to the center using CSS. I was able…