Posts by Douglas Takiuti • 70 points
6 posts
-
0
votes1
answer42
viewsA: Convergeter string array and save to database with Codeignater
I tested it like this and it worked: <form action="resposta.php" method="POST"> <input type="checkbox" value="RG" name="documento[]"> <input type="checkbox" value="CPF"…
phpanswered Douglas Takiuti 70 -
0
votes2
answers452
viewsA: How to send database data to view using ajax with codeigniter 3
As I would: on my button would put the product id with the attribute 'date-' like this: <button id="editarProduto" data-produto-id="<?php echo $produto['id']; ?>"> </button> In js…
-
0
votes1
answer88
viewsA: How do I put a background image in CSS using PHP?
It has as yes Vinicius, but remember that the php code should be inside a '.php' file to be interpreted by the server, if you are trying to put the php code inside the file'. css' will not work…
-
1
votes3
answers55
viewsQ: How to use mouse events to create enter/out effect without the German inside the selected element interfering
I wanted the div with class block was with an outline when I entered with the mouse inside the div and then the border disappeared when I take the mouse out. Problem, when I pass the mouse over the…
-
0
votes2
answers211
viewsA: Form with dynamic inputs in JS and PHP - I’m only getting the last field
How to solve: Choose one of the sent arrays and use the function foreach php to go through each of these values: $nome = $_POST['nome']; $cnpj = $_POST['cnpj']; $email = $_POST['email']; ... $corpo…
-
1
votes1
answer54
viewsA: Check php date and time
That way as you wrote the code, the script will only work if it runs exactly on Saturday at noon, note that someone will have to manually execute it at exactly this time. If your intention is that…
phpanswered Douglas Takiuti 70