here's my script in sending email
Code: Select all
$body = "Name: {$_POST['name']} \n\n ID NUMBER: {$_POST['idnum']}";
mail ("receiver", "Title",$body, "From: email ");
How can i make the text Name: and ID NUMBER: bold or have a different font? I tried using <b> but it doesnt work.
thanks.