I am trying to make a little image portfolio for myself. I haven't coded Php in a long time. Basically, I have a Image portfolio with a bunch of thumbnails. There are two links bellow each image. One to see the image in it's own window using a Java Script.
<!--
function openImage40_280(url,name)
{
popupWin = window.open(url,name,"width=40,height=280,status=no,location=no,toolbar=no,directories=no,menubar=no,scrollbars=no,resizable=no");
if (window.focus)
{
popupWin.focus();
}
}
//-->
<a href="javascript:openImage512_366('wood_retaintingwall_popup.php','C_P');">Full
Texture</a>
And the other link goes to another webpage that has the image tiling on a website. So for every image i have there are two webpages... one with the image tiles, and one with the image all by itself. The problem is that the site was managable with just a dozen images. Now it's getting to be a big burden. How can I do this dynamically.
I can't do it with a data base. Can I hand variables from one page to another?
-Respectfully,
Omita