Posts by Fabiano Chiaretto • 56 points
2 posts
-
2
votes1
answer70
viewsA: By creating a search link?
You can assemble the link according to the content of the fields with javascript. I don’t know if that’s the best option, but it works. Take the test. <div class="container"> <input…
-
2
votes4
answers3553
viewsA: How to get the next element in a PHP foreach
Simple. You do the normal foreach, but also use a next in the array to always pass to the next. <?php // Array $itens = array('foot', 'bike', 'car', 'plane'); // Lista array completo echo "Array…