[PHP] Echoing HTML in PHP as CGI

2002-09-26 Thread Reuben D. Budiardja

Hi all,
When using Apache web server, with php module, I can intermix between HTML 
code and PHP. But when using PHP as CGI (in other web server, eg. OMNI), as 
far as I know, I have to write all HTML code using either echo or print 
statement, right? Is there a better way to do this? 

The problem is that someone already have the HTML part, and I just wont to 
insert some PHP codes around it. If I use 
echo 
[HTML CODE] ;

then I have to escape all the quotation mark () inside the HTML code, which 
is laborious and not really elegant. The same problem occurs even if I use 
echo with single quote instead of double quote. I have to escape all the 
single quote, since the HTML code is also intermix between HTML and 
javascript, which has single and double quotes.

How do I best solve this problem? Thanks a lot for any response.
Reuben D. Budiardja

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Echoing HTML in PHP as CGI

2002-09-26 Thread 1LT John W. Holmes

The module and CGI will work the same. Just put your PHP where  you need it
within the HTML.

---John Holmes...

- Original Message -
From: Reuben D. Budiardja [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 26, 2002 3:27 PM
Subject: [PHP] Echoing HTML in PHP as CGI


Hi all,
When using Apache web server, with php module, I can intermix between HTML
code and PHP. But when using PHP as CGI (in other web server, eg. OMNI), as
far as I know, I have to write all HTML code using either echo or print
statement, right? Is there a better way to do this?

The problem is that someone already have the HTML part, and I just wont to
insert some PHP codes around it. If I use
echo 
[HTML CODE] ;

then I have to escape all the quotation mark () inside the HTML code, which
is laborious and not really elegant. The same problem occurs even if I use
echo with single quote instead of double quote. I have to escape all the
single quote, since the HTML code is also intermix between HTML and
javascript, which has single and double quotes.

How do I best solve this problem? Thanks a lot for any response.
Reuben D. Budiardja

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php