Hi,
I am working on an image to process it with different ways/options given in the page.
My page name is cart and it has an uploaded image having thumbnail view. When i click on that thumbnail it opens in a highfi technology thickbox. In my cart there are more than 1 images which can be process/manuplate with different options given in the cart.
Now what i want is that i need to send some extra values as a parameters so that i can process the image.
Ofcourse i am sending values through query string using "a" tag as suggested by thickbox. i am having problems while picking up that values on run time as i am unable to make a formatted query string.
Here is my code
when i get the value of document.forms[0].cat_id<?=$i;?> .value on the other page it gives
document.forms[0].cat_id0.value instead if it's value. How can i get it's value?
kindly help me out to sort out my problem
I am working on an image to process it with different ways/options given in the page.
My page name is cart and it has an uploaded image having thumbnail view. When i click on that thumbnail it opens in a highfi technology thickbox. In my cart there are more than 1 images which can be process/manuplate with different options given in the cart.
Now what i want is that i need to send some extra values as a parameters so that i can process the image.
Ofcourse i am sending values through query string using "a" tag as suggested by thickbox. i am having problems while picking up that values on run time as i am unable to make a formatted query string.
Here is my code
Code:
<a href="preview.php?height=580&width=500&pic=<?=$pathes[$i];?>&cat_id=document.forms[0].cat_id<?=$i;?>.value&format=<?=$fpd['prod_stock'];?>&&adjust=0&ladjust=1&effect=document.forms[0].effekt<?=$i;?>.value" class="thickbox"><img src="imagecreation.php?pic=<?=$pathes[$i];?>&produkt=30%20x%2020%20cm&adjust=0&ladjust=1" border="0" alt="" /></a>
document.forms[0].cat_id0.value instead if it's value. How can i get it's value?
kindly help me out to sort out my problem
Comment