Imageshack API几乎工作正常


Imageshack API almost working

本教程http://www.blocsoft.com/blog/imageshack.asp显示了一种上传到imageshack并返回图像url的好方法,尽管它是用于ASP的,我需要在PHP中使用它。

如果可以以及如何做到这一点,有什么想法吗?

非常感谢。

我刚刚将asp重写为php,不知道它是否有效。没有测试过它,但如果asp确实有效,那么php也应该有效。

index.php

<html>
  <head>
    <title>AJAX image upload</title>
  </head>
  <body>
    <form action="http://imageshack.us/redirect_api.php" target="AXframe" method="post" enctype="multipart/form-data">
      <input type="file" name="media"/>
      <input type="hidden" name="key" value="YOUR_DEVELOPER_KEY">
      <input type="hidden" name="error_url" value="http://example.com/error.php">
      <input type="hidden" name="success_url" value="http://example.com/success.php?one=%y&two=%u&three=%s&four=%b&five=%i">
      <input type="submit"/>
    </form>
    <iframe style="visibility:hidden" id="AXframe" name="AXframe"></iframe>
    <div id="link"></div>
    <div id="yfrog"></div>
    <div id="image"></div>
  </body>
</html>

成功.php

<?php
  $str1 = $_GET["one"];
  $str2 = $_GET["two"];
  $str3 = $_GET["three"];
  $str4 = $_GET["four"];
  $str5 = $_GET["five"];
?>
<script type="text/javascript">
  parent.document.getElementById('yfrog').innerHTML =  '<?php echo($str1); ?>';
  parent.document.getElementById('link').innerHTML = '<?php echo($str2); ?>';
  parent.document.getElementById('image').innerHTML = '<img src="http://img<?php echo($str3); ?>.imageshack.us/img<?php echo($str3); ?>/<?php echo($str4); ?>/<?php echo($str5); ?>">';
</script>

错误.php

<script type="text/javascript">
  alert("There was an error uploading the file.");
</script>