Posts by RibeiroSt • 166 points
5 posts
-
1
votes3
answers944
viewsA: PHP and Sqlserver connection
Friend, try following the proposed template on the official PHP manual page: $serverName = "SRVDOC\DOCSYSTEMSCAN"; //serverName\instanceName $connectionInfo = array( "Database"=>"fd_585b0f87",…
-
0
votes2
answers1887
viewsA: php/html Insert various data with the same information
Well, to solve the problem proposed in your comment, you can do as follows: 1 - First, include on your form page, the newest version of the jQuery library. 2 - Your form will be as follows: <form…
-
2
votes2
answers1887
viewsA: php/html Insert various data with the same information
Hello! You can create a PHP loop to generate the form’s HTML fields, for example: <form method="post" action="inserir5.php" name="dados-do-cliente" enctype="multipart/form-data"> <?php $qtd…
-
1
votes2
answers683
viewsA: Use or not use CSS/JS within PHP?
Hello friend. In addition to the issues cited by @Ifarroco, using CSS and JS scripts in external files also helps create cleaner, more standardized code. Let’s say your CSS will be used on multiple…
-
1
votes2
answers11326
viewsA: Create HTML table using PHP
Buddy, if you have a loop, you can do it this way: <?php echo ' <table> <tr> <td><b>Nome</b></td> <td><b>Função</b></td> </tr> ';…