Files
screamingFrog/index.php
2025-10-03 20:22:17 +02:00

12 lines
227 B
PHP

<?php
declare(strict_types=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);