Posts by robertsouzalopesify • 7 points
5 posts
-
-3
votes2
answers31
viewsA: Create a php folder in a specific repository
Answer: $parts = explode('Users/', $dir); $file = 'dados.json'; $dir = $data; foreach($parts as $part) if(!is_dir($dir .= "/$part")) mkdir("Users/$dir"); file_put_contents("Users/$dir/$file",…
phpanswered robertsouzalopesify 7 -
-1
votes2
answers31
viewsQ: Create a php folder in a specific repository
I create a folder for each user, but this creating where this my php file, I want to create in a folder inside this repository where the file, but it is not going, it is simple but I am new. $parts…
phpasked robertsouzalopesify 7 -
0
votes1
answer130
viewsQ: How to select multiple device images and upload them?
How to pick multiple images from what user select and send to mysql database by php? The most that got was a single image, but the user can select several on android and wanted to send to online…
-
0
votes1
answer52
viewsQ: remove [] from the array list
i have a php file that generates a json in array for another application to read, however everything is working but the json is coming with the [] of the list, and my application can only read from…
-
1
votes1
answer144
viewsQ: Site only works local, does not work online
I have a simple connection that my application uses to connect to the bank mysql. Locally everything was fine, but putting it online no longer works. I have changed several possible terms to the…