Posts by mario • 163 points
3 posts
-
1
votes2
answers217
viewsA: List Folders and delete files within them at once
That’s pretty simple you just need to use another glob() within the first loop, to create another loop and delete all files from the subfolders. ## lista as pastas do diretorio atual…
-
0
votes2
answers547
viewsA: Update php variable from one page without reloading it through another page form
You need to give echo in $senha on the page that receives the variable? I do not know what you intend to do with it, but perhaps it would be better to give more details, the code below processes the…
-
2
votes2
answers188
viewsQ: How to update only one column of the record?
I made a code to update some columns of my record when needed. There are 7 columns listed on array, but usually I will only update 1 or 2 columns. With this code I can update my record, but I have…