I have this code
Code: Select all
<?php
$num = $_POST['num'];
$num = $_GET['num'];
?>
<html>
<table border="0" align="center" cellpadding=3>
<?php
for ($x = 1; $x <= $num; $x++) {
?>
<tr>
<td><strong style="font-size:16px;">Picture <?php echo $x; ?></strong></td>
<td> <font size="-1">Photo URL:</font>
<input type=text name="purl[<?php echo $x; ?>]" style="margin:1px"> <br />
</td>
</tr>
<?php
}
?>
<td><strong>Width:</strong></td>
<td><input type=text name="width" style="margin:1px" value="400"></td>
</tr>
<tr>
<td height=10 style="border-top: thin solid #cccccc"></tr>
</table>
<div align=center><input type=submit value=Create! /><br />
</div>
</form>
</html>Code: Select all
<div align=center><table width=400 border=0 align=center><tr><td><marquee width="$width">
<img src=>
<img src=>
<img src=>
<img src=>
</marquee></td></tr></table></div>