I am new in php and i am working on my own project in which i have a html form.
When a user fills the form and clicks on submit all the data in form will store in database and also all data send to admin/owner in PDF formate via email.
I successfully store the data in database but, I don't know how could i send a pdf file via email..
I have tried the following code.
$to = 'example@email.com';
$subject = "Website Form Data Email";
$txt = $name .' '. $addr .' '. $snpno.' ;
$headers = "" . "\r\n" .
mail($to, $subject, $txt, $headers);
Please help me.
Thanks All...