Bir base64 kodlanmış dosyası sorunu Gönderme

0 Cevap php

Ben bir base64 olarak kodlanmış görüntü (~ 500KB) ve ben olsun bütün bir hatadır gizli bir giriş göndermek için çalışacağız ediyorum

   501 Method Not Implemented

GET to /test.php not supported.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Benim kod

<?php error_reporting(E_ALL) ?>
<html>
<head></head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="POST">
<input type="hidden" name="image" value="{base64 encoded image}">
<input type="submit" name="" value="OK">
</form>

<?php if($_POST) {
    echo '<pre>'.print_r($_POST, true).'</pre>';
} ?>

</body>
</html>

Ps. localhost üzerinde her şey çalışıyor.

Yardımlarınız için teşekkürler.

0 Cevap