LetaJerabeko
New Member
Good Afternoon.I'm attempting to make an array list with one of the key values being ($_REQUEST['qty#']), where "#" would be the current number of the item within the array (as it pertains to a field in a form that gathers this info).For example:\[code\]$itemdetails = array( array( 'qty' => ($_REQUEST['qty1']), 'price' => 0.70, 'pn' => 'TV-1000', array( 'qty' => ($_REQUEST['qty2']), 'price' => 0.99, 'pn' => 'TV-5000'));\[/code\]Is there any way that I can automatically have the number in ($_REQUEST['qty']) be determined without having to type in the numbers manually?Just wondering. My next guess would be to enter it all into a database and pull it from there.Thanks a bunch in advance.