Posts by Daniel Bruno • 58 points
7 posts
-
0
votes1
answer56
viewsA: Check whether multiple inserts have been successfully completed in Aravel
Dude, it’s pretty simple, to know when a code has been successfully compiled, throw it into an IF. Example. $sql = DB::insert('insert into laudo_exemplo(numero, pergunta, procedimento, fk_laudo)…
-
1
votes2
answers470
viewsA: How to use namespaces without classes with autoload from Composer?
I still don’t understand why you use it this way, you just want to call the correct function? If so it would be easier to create a helper and through it you create the function and call the same.…
-
0
votes1
answer588
viewsQ: SELECT with PDO and PHP OO
I am just starting my study on PHPOO, leaving more of the area of Structured... And after some studies, I obtained a part of the knowledge, but when trying to make a search in the database to verify…
-
2
votes2
answers2159
viewsA: How to call the value of a javascript variable to use in src?
Set an id on <source id="valor" with this id, you will go in javascript there in the function and add the following code: document.getElementById("valor").setAttribute("src", nome da variavel);…
-
0
votes2
answers69
viewsA: When I zoom in my footer is behind the div content
Look man, risking a hunch should be on account of: position: absolute; In "divcadastro".
cssanswered Daniel Bruno 58 -
1
votes2
answers69
viewsA: When I zoom in my footer is behind the div content
It goes in the css of the DIV that has the form (registration) inside, and there you add: z-index: 1000; So will make the div that is holding the content (Registration Form) Will be over the footer.…
cssanswered Daniel Bruno 58 -
-1
votes1
answer90
viewsQ: Jquery Library Function . load is not working!
<script> $(".coment").load("coments.php #coments"); </script> This function causes it to load the comments after sending it! This makes the comment be sent at the same time and…