Posts by Wellington Albertoni • 55 points
4 posts
-
1
votes1
answer97
viewsQ: How to receive the value of <select> in PHP when selecting an option
How do I, so that when the user selects an option, the PHP variable $idCourse receive the value of the selected option. I made this code just to show the idea: Code <select name="valor"…
-
-1
votes2
answers83
viewsQ: Why does background-color only work with overflow:Hidden?
I’m creating a menu and want to put a background color on it, however, when I try to apply a backgrond-color: #333 in one element ul WITHOUT the overflow: hidden;, the color does not appear. Because…
cssasked Wellington Albertoni 55 -
2
votes1
answer1924
viewsQ: How to get the data-value of the data-list
I have a data-list for the names of teachers, whose values (values) are their names. By default, in the input captures the data contained in value. Which creates a problem, since my database expects…
-
1
votes2
answers334
viewsQ: Mysql query with infinite loop
My 'listing.php' page loops infinitely when displaying values. I used a while to display all database values The PHP code used in the page php listing. <?php while($row = $resultado):?>…