Recent content by vinstone t

  1. V

    how to include image in header of email using php sendmail?

    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)...
  2. V

    PHP/HTML - How to display a single column of check boxes in 2 or 3 columns?

    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...
  3. V

    How to insert a PHP new line after a row of data?

    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">...
Back
Top