Posts by mouradev • 54 points
5 posts
-
-1
votes5
answers1328
viewsA: How to create folders in python desktop
Your code is using subprocess.call('cd Desktop', shell= True) does not work because the subprocess.call() works as a single command only, so when Voce runs it with the cd, can be that it is indeed…
-
0
votes1
answer220
viewsA: How to delete a row from the database?
Looking at your code to delete images, the first error I encounter is that you will always try to delete the "image" with id = 1 in the database, because Voce declared: $id = 1;, then you should…
-
0
votes1
answer264
viewsA: Multiple files with HTML and PHP
If you need to grab multiple files, then you need to treat as an array. Change the name of adding [] in the end, in this way: <form action="teste2.php" method="POST"…
-
0
votes2
answers100
viewsA: I can’t edit cloned git files on the PC
If you can’t edit files on your machine, the error that appears to Windows already says, is permission problem, but permission on your file system and not on github for example. Try giving write…
-
0
votes1
answer82
views