1 2 3 4 5 6 7 8 9 10 11 12<?php // Report Errors ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // Axe Web Service $url = $_GET['url']; exec('axe --chrome-options="no-sandbox" --stdout '.$url, $output, $retval); foreach($output as $item){ print_r(htmlspecialchars($item)); } ?>