Posts by Clesio SAMA • 37 points
3 posts
-
-2
votes1
answer62
viewsQ: How to translate fields of a json?
I need to do a translation of the fields of a json. I want to inform as input a multidimensional json and as output receive another json with different fields, but remaining the values. Input…
-
2
votes1
answer56
viewsQ: How to modify the URL of www.meusite.com/index.php? secao=quemsomos para www.meusite.com/quemsomos?
My file . htaccess is this way: RewriteEngine ON RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?secao=$1 I want to translate the url…
-
2
votes1
answer641
viewsQ: Tip on how to turn loops into recursive function
This program takes the professional aptitude test based on the logic of Fuzzy relations. I have to turn these loops into a recursive function, researched and even understood how a recursive function…