这是我的 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 行,即图像的名称没有正确提交.....所以有人请帮我吗?