Posts by Alexandre Silveira • 15 points
2 posts
-
0
votes1
answer28
viewsQ: Problems with INSERT INTO in Crawler in PHP - Error passing variable as parameter
<?php require_once "./vendor/autoload.php"; use Goutte\Client; $servername = "localhost"; $database = "*******"; $username = "root"; $password = "********"; $conn = new mysqli($servername,…
-
-1
votes1
answer43
viewsQ: PHP: How to check if there is a field in the table, and if it does not exist, add
<?php $servername = "servername "; $database = "database "; $username = "username "; $password = "password "; $conn = new…