Posts by Daniel Lopes • 236 points
4 posts
-
1
votes2
answers304
viewsA: Remove checked items in the checkbox (Javascript, PHP)
You will need to set the checkbox name as an array, example <input type="checkbox" name="carro[]" value="idDoCarro" /> On the PHP side, just scroll through the post/get $_POST['car'] array and…
-
5
votes1
answer292
viewsA: How to remove double sidescroll bar?
with css in the element that encompasses the information(you can discover it with the browser’s Inspect): overflow-y: Hidden
-
2
votes1
answer40
viewsA: Count only new regsitros at the bank and submit as notifications
No friend, the control has to be manual, with a flag like you did or inserting these new Ids into a control table for the same purpose.
-
1
votes4
answers166
viewsA: C# WPF How to separate a long string into several positions of an Array?
Simple way to split the string using regular expressions, remembering that with substring always have to validate the size, if the string is smaller than 14*50 there will be error. var…