Posts by Alessandro Gonçalves • 86 points
5 posts
-
0
votes2
answers218
viewsA: jQuery’s "Immature()" does not work
You have 2 problems in this code! 1 - Have to load the full jquery version, you are using the slim version. Carry: <script src="https://code.jquery.com/jquery-3.2.1.min.js"…
-
0
votes1
answer33
viewsA: How to remove equal tables
Friend, good morning, isolate the possible causes of this problem. 1 - Make sure that queries are not returning a higher registration number, this may occur because of a poorly done Join. To view…
-
1
votes1
answer49
viewsA: If you don’t search, don’t show up
Good morning, if I understand what you need, just repeat the if done before displaying the table data. <?php if(!empty($clientes)):?> <p> <a href='listarprocessos.php'…
phpanswered Alessandro Gonçalves 86 -
1
votes4
answers409
viewsA: Separate text by space except inside quotation marks
Try this, using a head look. (?<=")[\w\s]+(?=")\b|\w+ https://regex101.com/r/Ccy9h2/2 Example of the js code executed by the link above: const regex = /(?<=")[\w\s]+(?=")\b|\w+/g; const str =…
-
2
votes1
answer32
viewsA: Echo does not return the image path in the HTML "style" attribute
The problem is the quotation marks, you are getting lost in the interpolation. Try to escape the quotation marks: echo "<div class=\"carousel-item active\" style=\"background-image:…
phpanswered Alessandro Gonçalves 86