Hey everyone, one of my buddies turned me onto your site a couple days ago.
I've been trying to work out an ordering system for my website, and have gotten stuck on this one part... I had the thing working however it was \"hard coded\" let me show you an example.
I'm passing a checkbox over to order.php from list.php and here's some code from order.php
<input type=\'hidden\' name=\'$a1\' value=\'$b1\'>
Where $a1 is just a generic count, and $b1 is the item name. But here's my problem...
When using this loop...
<?
$a1=$a0;
$b1loop=$b1;
while ( $a1 < r7 )
{
$a1++;
echo\"<input type=\'hidden\' name=\'$a1\' value=\'$b1loop\'>\";
$b1loop++;
}
?>
When using this, I need to have $b1 be incremented... as b1, b2 ,b3 because these are item id's in my database, and I need to extract and display these in my current page. But if my input from list.php is say fff, it turns out like ffg, ffh, and ffi. which is not what I need lol... Please contact me via ICQ : 20152696, MSN ; NXChew@hotmail.com, or AIM : NXChew for further info about my problem
Thanks So much!
Matt