I have a popup window that lists different manufacturers and vendors for sales people to get quotes from. I would like the ability to open a seperate window for each manufacturer and vendor with a quote (to be printed) when the form data is submitted.
For example I tried the following code:
while (list($key, $value) = each($vendor_array)) {
header("Window-target: _blank");
header("Location: po_getquote.php?id=$key&ptempnum=$ptempnum ");
}
I did this thinking header information would be sent to a "new" window as the array was traversed.
It's not working.
Any info or ideas would be appreciated.
Thanks