Posts by jjuniob • 26 points
3 posts
-
-1
votes1
answer230
viewsA: How to download the content blob in php
You cannot do this on the user’s computer. What you have to do is provide the file download. Example: <?php $path = 'c:\Temp\\xml\\'.$nomearquivo.'xml'; $nomearquivo = 'seu_arquivo.xml';…
-
1
votes1
answer56
viewsA: I need urgent help, I couldn’t interpret this activity and I can’t fix the code
It is an activity to show that you have learned to manipulate an array (array) and make loops, and use variables. $dados = array( array( 'nome' => 'joao', 'salario' => 100, 'ativo' => false…
-
0
votes2
answers1463
viewsA: create dynamic select with Reactjs + Hooks
You search cities only when the value of the state Ufs changes. In your current code you are searching so it loads all Ufs. useEffect(() => { searchCities() },[UFs]);…