У меня в коде HTML/PHP почему-то тег (или как это назвать) <?php Открывает не php код, а html комментарий и получается, что на странице отображается кусок PHP кода после CURLOPT_URL =>. В notepad++ всё отображается правильно, помогите пожалуйста, я замучился уже.
<body>
<form action="" method="get">
<input type="text" name="url">
<input type="submit" value="Вася, ран">
</form>
</body>
<?php
$options = array(
CURLOPT_URL => 'http://audiotag.info/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query(array('URL' => $_GET['url'], 'step' => '22')),
);
$myCurl = curl_init();
curl_setopt_array($myCurl, $options);
$response = curl_exec($myCurl);
curl_close($myCurl);
$pos = strpos($response, '<form action=');
$content = substr($response, $pos);
$pos = strpos($content, '" alt="code');
$content = substr($response, 0, $pos);
$pos = strpos($content, 'name" value="');
$fname = substr($response, $pos);
$pos = strpos($fname, '"');
$fname = substr($fname, 0, $pos);
echo $fname;
?>