Posts by Danilo Iannone • 26 points
4 posts
-
0
votes2
answers172
viewsA: How to scrape Qlikview tables using Nodejs?
Entering the site you sent, I saw that has a Print icon, clicking on it, is generated a link in HTML. I believe that from to parse everything you need for him:…
-
-1
votes1
answer159
viewsA: How to perform sales commission calculation
first you’ll have to figure out what percentage to then put in the "if" (499/1000)*100 = 49,90% then enter the 1% range got the idea?
-
0
votes1
answer38
viewsA: How to select in MYSQL, bringing together results
sort of like this $result = $db->query( "SELECT * FROM tabela_tipos INNER JOIN tabela_unidades ON tabela_tipo.id = tabelas_unidades.idtipo" ); $tipos = $result->fetchAll( PDO::FETCH_ASSOC );…
-
0
votes1
answer36
viewsA: PHP cannot pull data from the database using Bootstrap
first you should improve the openings of php tags, the correct is: <?php echo $bairro; ?> bootstrap does not have the "power" to spoil anything in PHP, because PHP is backend and the bootstrap…