0

这是我的 html/php 代码:

<form method="post" action="contrast.php">
  <li><input type="image" height="200" width="200" src="show_image.php?id='2'"   
  id="image" onclick="document.getElementById('hidimgSrc').value                   
  =this.src;document.getElementById('myform').submit();" name="abc"></li> 
  </form>

这是 contrast.php 图像的 php 代码:

 <?php
    $a=(string)$_POST['abc'];
    echo $a;
    $image = imagecreatefromjpeg($a); 
    imagefilter($image, IMG_FILTER_CONTRAST, -80); 
    imagejpeg($image, 'contrast-sun.jpg'); 
    imagedestroy($image); 
    echo '<img src="contrast-sun.jpg" alt="Image With A Contrast Effect Applied" />'; 

   ?>

这里出现的错误是 Undefined index: abc in C:\wamp\www\radha\contrast.php 在第 2 行,即图像的名称没有正确提交.....所以有人请帮我吗?

4

1 回答 1

1

不幸的是,有时图像按钮不会将数据传送到您的 php 页面。我已经多次遇到这些问题。后来我意识到

<input type="image" />

是问题所在。尝试

<input type="submit" height="200" width="200" onclick="document.getElementById('hidimgSrc').value=this.src;document.getElementById('myform').submit();" name="abc">
于 2013-03-19T19:14:12.767 回答