View Single Post
Join Date: Jan 2009
Posts: 2
Reputation: Metse is an unknown quantity at this point 
Solved Threads: 0
Metse Metse is offline Offline
Newbie Poster

HELP - php code to post all list box values

 
0
  #1
Jan 12th, 2009
'am a beginner & am busy designing a site that has simple order-form which captures details of a cust and submit them throuth as an email using php, which works fine.

my problem is i added 2 list boxes, one(as a drop-down) pre-populated with items-to-order which allows the user to add items in-need to the second list box...

how do i sumbit all values of the 2nd list box along as an email. My code currently is:
.
.
$listbox2 = $_POST('listbox2')
.
.
$message .= "items on order are: ";
$message .= $listbox2;
.
.

which doesn't work.

Please Help !!!!
Reply With Quote