Posts by Vanildo Souto Mangueira • 124 points
5 posts
-
0
votes1
answer619
viewsA: Dynamic Combobox Information Filter
You should use ajax even. Using jquery would look like this: Create a script that returns only employees filtered by company, as in Empregados that you put in the example. Use the function ajax…
-
1
votes2
answers342
viewsA: exec does not work - apparently runs the same call file
You can add a header like this in the Mkt-exec.php file: #!/usr/bin/php <?php // O resto do código Give execution permission with chmod +x mkt-exec.php and run straight with the command…
-
2
votes3
answers213
viewsA: Function explodes() into a vector
Use like this $vet = explode("/", $var); More here
phpanswered Vanildo Souto Mangueira 124 -
1
votes1
answer966
viewsA: Phpmailer does not work email
Try it like this: Download their Github repository, using the "Clone or Download Button" https://github.com/PHPMailer/PHPMailer Place in the project folder Do the autoload require And configure with…
-
3
votes2
answers508
viewsA: load in css and jquery
You better make a page that only carries the div: <!-- Loading --> <div class="se-pre-con"><p>PROCESSANDO DADOS</p></div> And another page that only loads the content…