Jump to content

zax2002

Neophyte
  • Posts

    1
  • Joined

  • Last visited

Information

  • Sex
    мужской

zax2002's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. У меня в коде 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; ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy