dear friends i want to put inquiry buton in my website like shopping cart(no payment option) , if user select any and then fill feed back form , i want to get list of selected item . how can i do it?
for example i have a static web site and suppose i have 10 product , i want when visitor click on check box any one or more product and then click on submit button i message via e mail that visitor want to information about these product
sure - set up a link to a php script that calls the mail() function. (from http://us2.php.net/function.mail ) <?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: ' . "\r\n" . 'Reply-To: ' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?>