I am trying to include an image in the header using sendmail, but I keep getting syntax errors. Here is what I have:
$image = 'images/test.png';
$subject = " subject line";
$message_body = "This is message body";
$message_body .= $image;
$creator = getUserInfo($program->creator)...
I have a list of products that the user can select by checking the appropriate check boxes. Originally this worked fine when the list of products is short. Now it's stretching to two pages and I want to shorten them down to one page using 2 or three columns. How would I do that? Thanks...
Hi, I want to add a second new row after all the cells in the first row are filled and then display some description in the new row before repeating the loop. This is what I currently have for the table and the row data:
<table width="100%" cellpadding="0" cellspacing="0" class="tpf_tablerow">...