Fatal error: Cannot instantiate non-existent class: com in /membri/wordtraductor/Auto.php on line 2
<?php
$browser = new COM("InternetExplorer.Application");
$handle = $browser->HWND;
$browser->Visible = true;
$browser->FullScreen = true;
$browser->Navigate($_POST['Text1']);
/* Still working? */
while ($browser->Busy) {
com_message_pump(4000);
}
$im = imagegrabwindow($handle);
$browser->Quit();
imagepng($im, md5($_POST['Text1']).".png");
//header('Location: index.html');
?>
Come posso risolvere se posso ovviamente farlo?