RE: [PHP] PHP Alternative to IFRAME?

2004-02-24 Thread Jason Merrique
: Re: [PHP] PHP Alternative to IFRAME? Your right I was mixing up what I wanted. What I wanted to know I guess was if I use an include and include a file can I format where that file will display. So what I have is a little box with some info in it. I want it to display to the right

Re: [PHP] PHP Alternative to IFRAME?

2004-02-24 Thread Justin Patrin
Nicole wrote: I'm not having much luck explaining what I want here ... a drawback of emailing. I know how to include files, I just wanted to include it in such a way that my body text still wrapped around it. I think I need to tackle this using HTML. Robert Sossomon [EMAIL PROTECTED] wrote in

Re: [PHP] PHP Alternative to IFRAME?

2004-02-24 Thread Nicole
That is almost exactly what I ended up doing. Thanks a bunch! Justin Patrin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Nicole wrote: I'm not having much luck explaining what I want here ... a drawback of emailing. I know how to include files, I just wanted to include it in

Re: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Richard Davey
Hello Nicole, Monday, February 23, 2004, 5:21:11 PM, you wrote: N Is there a PHP alternative to an IFRAME? Here's what I mean. No, of course not. PHP is a server-side language. IFRAME's (and anything related to page construction/display) is client-side. N Is there a way to include a file in my

Re: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Nicole
Your right I was mixing up what I wanted. What I wanted to know I guess was if I use an include and include a file can I format where that file will display. So what I have is a little box with some info in it. I want it to display to the right of the body text and have the body text wrap

RE: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Chris W. Parker
Nicole mailto:[EMAIL PROTECTED] on Monday, February 23, 2004 10:26 AM said: What I wanted to know I guess was if I use an include and include a file can I format where that file will display. So what I have is a little box with some info in it. I want it to display to the right of the

RE: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Robert Sossomon
Just place ?php include box_info.php; ? In your web page in the location where the little box is. Word wrap typically only happens with images though, so you may have to turn your text into an image, in which case you could just use a javascript commands to change the image as needed. If you

Re: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Nicole
I'm not having much luck explaining what I want here ... a drawback of emailing. I know how to include files, I just wanted to include it in such a way that my body text still wrapped around it. I think I need to tackle this using HTML. Robert Sossomon [EMAIL PROTECTED] wrote in message

RE: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Chris W. Parker
Nicole mailto:[EMAIL PROTECTED] on Monday, February 23, 2004 12:06 PM said: I'm not having much luck explaining what I want here ... a drawback of emailing. I know how to include files, I just wanted to include it in such a way that my body text still wrapped around it. myfile.php: ?php

Re: [PHP] PHP Alternative to IFRAME?

2004-02-23 Thread Tom Rogers
Hi, Tuesday, February 24, 2004, 3:21:11 AM, you wrote: N Is there a PHP alternative to an IFRAME? Here's what I mean. N Is there a way to include a file in my php document that will be positioned N where I want it, like an IFRAME? I want to have it aligned right with text N wrapping around it