i have array
$fullname = $_POST['fullname'];
$company_name = $_POST['company_name'];
$email = $_POST['email'];
$address = $_POST['address'];
$telephone = $_POST['telephone'];
$comment = $_POST['comment'];
$data = array ( "Full Name :" => $fullname,
"Company :" => $company_name,
"email :" => $email,
"address :" => $address,
"telephone :" => $telephone,
"mobile :" => $mobile,
"comment :" => $comment);
i want show resul such as (Fullname : $fullname Email: $email) to send it as email
and add array in string using implode(" ",$data)
what can i do??