Posts by Leonardo Negrão • 1,096 points
55 posts
-
0
votes1
answer38
viewsA: What’s the best way to submit a form?
I think there are several ways to do this, I prefer it this way: <!-- form 1 --> <form class="head-quote-seguro" method="post" action="./form-seguros.php?form=Seguro1"> <!-- form 2…
-
1
votes1
answer30
viewsA: Websockets on windows server
assuming you are using socket.io, synchronous communication between server and browser requires Node.js In short, when you use PHP, the browser prompts for the server’s content and never the other…
-
0
votes1
answer361
viewsA: google ads conversion code
have already solved this problem using JS with Jquery, thus: $('a[href*="whatsapp"]').click(function(){ gtag('event', 'conversion', { 'send_to': 'AW-***************/*******************',…
-
0
votes2
answers1186
viewsA: Modal Bootstrap superimposed on dark background in request without reflesh
Have you tried .modal { z-index:999999;} ?? It is usually possible to control order of layers in CSS by z-index, where attributes like "position" and display" can also interfere. I hope it helps,…
javascriptanswered Leonardo Negrão 1,096 -
2
votes1
answer34
viewsA: Error handling of special characters when sending to iso-88591 and utf-8 database
you can try changing the character encoding using php, are: echo 'Teste de charset'.utf8_decode($var); echo 'Teste de charset'.utf8_encode($var); The official documentation:…