کد:<html>
<head>
<title>Google Image Link Converter by TOWHEN</title>
</head>
<body bgcolor="#0f0f0f">
<b><font face="Tahoma" style="font-size: 10pt" color="#828282" >
Enter your google image addresses:<br>
<p style="margin: 10px;">
<FORM action="test.php" method="post">
<textarea name="txtInput" rows="30" cols="100" style="color: white; background-color: #292929"></textarea><br>
<br>Showing Method:<br></b>
<input type="radio" name="showtype" value="links" CHECKED >List Images Links<br>
<input type="radio" name="showtype" value="sizedthumb">Resized Images Thumbnails<br>
<input type="radio" name="showtype" value="fullthumb">Full Size Images Thumbnails<br>
<input type="radio" name="showtype" value="fullsize">Show Full size Images<br><br>
<INPUT TYPE = "Submit" Name = "Convert" VALUE = "Convert">
</FORM></p>
</font>
</body>
</html>
تا الآن کد ها به این صورت شد.کد:<html>
<head>
<title>Your Images Direct Links are Ready!</title>
</head>
<body>
<p class="alt2" dir="ltr" style="
margin: 10px;
padding: 6px;
border: 1px inset;
width: 950px;
height: 630px;
text-align: left;"><font face="Tahoma" style="font-size: 8pt">
<?php
$url = (get_magic_quotes_gpc()) ? stripslashes($_POST['txtInput']) : $_POST['txtInput'];
parse_str(parse_url($url, PHP_URL_QUERY), $result);
if ($_POST["showtype"] == 'links')
{
if($result['imgurl'])
{
echo $result['imgurl'];
} else
{
echo 'Invalid image';
}
} else if ($_POST["showtype"] == 'sizedthumb')
{
} else if ($_POST["showtype"] == 'fullthumb')
{
if($result['imgurl'])
{
echo '<a href="', $result['imgurl'], '"><img style="border:4px dashed #545565; margin:2px" src="', $result['imgurl'], '" width="225" height="151" /></a>';
} else
{
echo 'Invalid image';
}
} else if ($_POST["showtype"] == 'fullsize')
{
if($result['imgurl'])
{
echo '<img src="', $result['imgurl'], '">';
} else
{
echo 'Invalid image';
}
} else
{
echo 'You should select a Showing Method.';
}
?>
</font></p>
</body>
</html>
مشکلم اعمال تغییرات روی تک تک خط های textbox و بعد لیست کردن آدرس های نهایی زیر هم هست.
امکانش هست یه تامبنیل که اندازه و حجمش کم شده رو تو صفحه ای نشون بدم بدون اینکه این فایل عکس جدید و کوچیک جایی ذخیره بشه؟