Advertisement
Guest User

Untitled

a guest
Dec 7th, 2011
3,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. // Why this?
  2.  
  3. $message = '<html><body>';
  4. $message .= '<form action="http://mysite.com/process.php" method="post" target="_blank">';
  5. $message .= '<label>How did you like the movie <strong>Turfnuts</strong>?</label><br />';
  6.  
  7.  
  8. // And not this?
  9.  
  10. $message = '
  11.    <html>
  12.        <body>
  13.            <form action="http://mysite.com/process.php" method="post" target="_blank">
  14.                <label>How did you like the movie <strong>Turfnuts</strong>?</label><br />
  15.                ...
  16.    </html>
  17. ';
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement