Posts by Jefferson silva pereira • 11 points
4 posts
-
0
votes1
answer164
viewsQ: UPDATE ON DJANGO
I’m a beginner in Django and I’m trying to crud, create, read and delete are working, but the update is not working. Please help me out. This is the page with the data listing: <table…
-
0
votes1
answer433
viewsQ: Making queries in the bank through form using Django
I am starting studies on the use of the Django framework and I am trying to query the database using a form to return a specific value in the database. Follow my template: <form method="GET">…
-
0
votes1
answer61
viewsA: PHP-File uploaded does not go to the directory defined
Guys thanks a lot for the help, but I managed to solve, turns out I was putting the move_uploaded_file before the condition and should be put after. Now it’s working right.
-
0
votes1
answer61
viewsQ: PHP-File uploaded does not go to the directory defined
$arquivocom = $_FILES['submetidocom']['name']; $diretoriocom = "C:/Users/NEWGRID/Documents/uploadcom/"; move_uploaded_file($_FILES['submetidocom']['tmp_name'], $diretoriocom.$arquivocom); if…