Posts by John Schmitz • 56 points
2 posts
-
2
votes1
answer266
viewsA: Algorithm for reading multiple numbers in PHP
Good afternoon, my friend. My suggestion is to read the entire sequence and then split the sequence. $sequencia = explode(",",$_POST["sequencia"]); $soma = 0; foreach ($sequencia as &$valor) {…
-
1
votes3
answers861
viewsQ: Simulate "ok" via command line
I have a Windows prompt command that disables proxy settings: REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\" /v ProxyEnable /t REG_DWORD /d 0 /f My system browsers are…