Sonstiges

This commit is contained in:
2025-10-03 20:22:17 +02:00
parent a6e2a7733e
commit 4e868ca8e9
2 changed files with 361 additions and 290 deletions

View File

@@ -1,13 +1,11 @@
<?php
declare(strict_types=1);
Error_reporting(E_ALL);
ini_set('display_errors', 1);
error_reporting(E_ALL);
ini_set('display_errors', '1');
require_once 'webanalyse.php';
$wa = new webanalyse();
$db = mysqli_connect("localhost", "root", "", "screaming_frog");
$wa-> doCrawl(1);
$wa = new WebAnalyse();
$db = mysqli_connect('localhost', 'root', '', 'screaming_frog');
$wa->doCrawl(1);