0) { if (strpos(strtolower($theurl), 'http') !== false) { $res=shell_exec('curl -X OPTIONS ' . $theurl . ' -i'); } else if (strpos(strtolower($theurl), '//') === false) { $res=shell_exec('curl -X OPTIONS http:' . $theurl . ' -i'); } else if (strpos(strtolower($theurl), '//') !== false) { $res=shell_exec('curl -X OPTIONS http://' . $theurl . ' -i'); } } if ($res != '') { echo '

' . str_replace("\n", "
", $res) . '

'; } exit; } else { echo "

HTTP Methods for Website via Curl

RJM Programming - May, 2024



"; } ?>