hello,
i need html table to be inserted in php code..i tried this but i am getting some problem with it so can anyone help me..
Thank u..
My actual code is this
i tried and i need some thing like this..but i am not getting... is there any error in this.. please suggest me..
i need html table to be inserted in php code..i tried this but i am getting some problem with it so can anyone help me..
Thank u..
My actual code is this
Code:
$messageproper ="\n\n" . "Name: " . ucwords($_POST['name']) . "\n" . "Email: " . ucwords($email) . "\n" . "Message: " . $_POST['message'] . "\n" . "\n\n" ;
Code:
$messageproper = "<table bgcolor= "."gray ".">
<tr>
<td>Name : </td>
<td>Email :</td>
<td>Message :</td>
</tr>
<tr>
<td>".ucwords($_POST['name'])."</td>
<td>".ucwords($email)."</td>
<td>".$_POST['message']."</td>
</tr>
</table>";
Comment