Posts by Iury Martins • 19 points
3 posts
-
0
votes1
answer422
viewsQ: Edit text file in cmd
I have a test.txt file D:\Tools\fonts D:\Tools\gui D:\Tools\guitex D:\Tools\table is there any command that edits the test.txt file to be this way? command###D:\Tools\fonts command###D:\Tools\gui…
-
-2
votes3
answers1195
viewsA: I need to take the current URL and know if after index.php you have "?" or "&"
I made a code here that solved the problem //URL ATUAL $url = str_replace("/", "", $_SERVER[REQUEST_URI]); if ($url == '') { $url_atual = "index.php"; } else { $url_atual = $url; } echo…
urlanswered Iury Martins 19 -
-3
votes3
answers1195
viewsQ: I need to take the current URL and know if after index.php you have "?" or "&"
The initial part to get the URL I already made using this code: //URL ATUAL $url_atual = str_replace("/", "", $_SERVER[REQUEST_URI]); echo $url_atual; ..... If I’m at the url…
urlasked Iury Martins 19