Web Technologies
Slip16
Q.1) Write a PHP script to set selected image from ComboBox (DropDownList) to the background of Page. [Marks30]
Solution
img.html
<html><body>
<form action=changeimage.php method=get>
select image
<select name="img">
<option value=boy.jpg>boy.jpg</option>
<option value="2">Document</option>
<option value="3">Vehical</option>
<option value="4">Pople</option>
</select>
<input type=submit value=submit>
</form>
</body>
</html>
slp16.html
<html>
<body>
<form action="slp16.php" method="post">
<select name="t1">
<option value="image1.jpg"/>Rose1
<option value="image2.jpg"/>Rose2
<option value="image3.jpg"/>Rose3
</select>
<input type="submit">
</body>
</html>
changeimage.html
<?php$image1=$_GET['img'];
echo"<body background=".$image1.">";
?>
slp16.html
<html><body>
<h1>
<?php
$a=$_POST['t1'];
echo"<img src=\"$a\">"
?>
</h1>
</body>
</html>
Tags:
Web Technologies