Posts by Júlio César Bruno • 26 points
2 posts
-
1
votes2
answers326
viewsA: Get radio input value display on same page, no refresh
if you want the freight value to be shown after clicking on the corresponding radio input, just create a script about the selection action: $('#frete').change(function (event) {…
-
0
votes1
answer138
viewsA: Create a menu with categories
<ul> <li></li> </ul> You want to create a menu and submenu with the categories and subcategories coming from the database, this way? <?php // Conexão com o Banco (local)…