Posts by Rafael Dantas • 300 points
5 posts
-
1
votes2
answers7222
viewsA: How to pass a variable to Blade?
Hello, You can pass an array when you call the view, as the second parameter, containing the variables you want to use in your view. Example: view('home', ["usertype" => "USERTYP1"]); If you want…
-
0
votes1
answer1049
viewsA: How to jump line in tooltip?
Good morning, You can put a \n (to start a new line) at the part you want to skip the line. Example: onmousemove="ShowTooltip(evt,'Manaus\n(92)3231-1424')"…
-
1
votes1
answer924
viewsA: Calculation problems with jquery.maskMoney
Hello, To solve your problem, change the event you are calling in ". margin" to keyup instead of input. In your code it’s like this: $(".margem").on("input", function() { Change to:…
-
8
votes2
answers518
viewsA: Grab File without knowing the extension of it
Try using the glob function foreach (glob("lua.*") as $archive) { // faça sua mágica aqui } Or you can also limit extensions glob("lua.{jpg,png}") Reference:…
phpanswered Rafael Dantas 300 -
0
votes1
answer87
viewsQ: When accessing a *.php lead to Autostart.php? url=*. php
Hello, I have a problem, I need you to access any file .php, he directs to autostart.php?url=*.php Explanation: In the autostart.php it da include in a file and after it gives include in the page…