Posts by Adriano Campos • 51 points
3 posts
-
0
votes0
answers420
viewsQ: CSS Printing: Image Cropped in Page Break [Solved]
I’m having trouble printing, when using an image, the same cutting in the page break, I tried to use page-break-inside: avoid;, didn’t solve. What can I do to prevent images from being cut when…
-
2
votes2
answers267
viewsA: send array to database via php
You can loop when inserting using for: if(isset($_POST['btn-cadastrar'])){ $nomeFicha = $_POST['nomeFicha']; $nomeExercicio = $_POST['exercicio']; $grupoMuscular = $_POST['grupoMusc']; $numSeries =…
-
0
votes1
answer63
viewsA: Control access to documents
@Beloved what you can do is first create a link table between the user and the document. Table Example: CREATE TABLE `viculo` ( `id_vinculo` int(11) NOT NULL AUTO_INCREMENT, `id_documento` int(11)…