declare a block of HTML as a PHP variable?

This is a discussion on "declare a block of HTML as a PHP variable?" within the PHP Forum section. This forum, and the thread "declare a block of HTML as a PHP variable? are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 31st, 2007, 20:33
Junior Member
Join Date: Sep 2006
Location: Here
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
declare a block of HTML as a PHP variable?

Does anyone know if you declare a block of HTML as a PHP variable?
Reply With Quote

  #2 (permalink)  
Old Dec 31st, 2007, 22:39
Highly Reputable Member
Join Date: Sep 2007
Age: 15
Posts: 717
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: declare a block of HTML as a PHP variable?

This is actually quite simple! Just do this:
PHP: Select all

<?php
$htmlcode 
'<body><div class="content">Some Text</div><img src="image.png" border="0" height="10" width="20"><p id="paragraph">More text</p></body>';
echo 
$htmlcode;
?>
Just put all the html between two apostrophes ( ' ). And that's it!

Cheers, and have a great new year!
Last Blog Entry: Windows Vista vs. Mac Leopard (Nov 4th, 2007)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Block PHP Tag Jack Franklin PHP Forum 5 Feb 13th, 2008 23:12
new kid on the block lozfromaus Introduce Yourself 16 Jul 13th, 2007 12:02
New Kid on the Block:) carib Introduce Yourself 8 Apr 25th, 2007 00:54
New Man on the Block phillyphreak Introduce Yourself 6 Jul 1st, 2005 16:55
New guy on the block Anonymous User Introduce Yourself 3 Jan 31st, 2005 13:04


All times are GMT. The time now is 05:42.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43