Re: Re: RE: [PHP] Variable Problem

2003-02-06 Thread Jason Wong
On Thursday 06 February 2003 22:50, Sunfire wrote: > no that doesnt work either what you get when you do that one in the edit > box is: > using: > > > or any different with echo in the value field gives me in the box: > }> > ...rest of the script outside the box Spot the difference between your co

Re: Re: RE: [PHP] Variable Problem

2003-02-06 Thread Sunfire
t;[EMAIL PROTECTED]> Sent: Thursday, February 06, 2003 12:25 AM Subject: Re: Re: RE: [PHP] Variable Problem > On Thursday 06 February 2003 07:48, Sunfire wrote: > > on any server i ever dealt with if i put: > > > > > in the edit box for the value i always always end up wi

Re: Re: RE: [PHP] Variable Problem

2003-02-05 Thread Jason Wong
On Thursday 06 February 2003 07:48, Sunfire wrote: > on any server i ever dealt with if i put: > > > in the edit box for the value i always always end up with what $sent stands for..the only way i found it to work is with echo <<< but > maybe im missing something With the above you should end up

Re: Re: RE: [PHP] Variable Problem

2003-02-05 Thread Chris Shiflett
--- Sunfire <[EMAIL PROTECTED]> wrote: > on any server i ever dealt with if i put: > > > in the edit box for the value i always always end up > with way i found it to work is with echo <<< but maybe im > missing something You are "missing" correct PHP syntax and correct HTML syntax, so I guess th

Re: Re: RE: [PHP] Variable Problem

2003-02-05 Thread Sunfire
on any server i ever dealt with if i put: > in the edit box for the value i always always end up with To: "Sunfire" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 05, 2003 5:44 PM Subject: Spam: Re: RE: [PHP] Variable Problem > --- Sunfire <[E

Re: RE: [PHP] Variable Problem

2003-02-05 Thread Chris Shiflett
--- Sunfire <[EMAIL PROTECTED]> wrote: > you can do: > echo << //any valid html code here > > BLOCK; No, he needed to output $sent, which is dynamic. Also, it is a lot cleaner (and likely faster) just to use to switch in/out of PHP as needed. If you're writing a bunch of static HTML, there's no

Re: RE: [PHP] Variable Problem

2003-02-05 Thread Sunfire
you can do: echo << BLOCK; it is easier if you have a form or large amounts of code to echo/print to the screen with vars and stuff to use the echo <<< stuff its pretty cluttered and its harder to use print or echo for every line of code you need to echo...specially if there are 300 lines of code a

Re: Re: [PHP] Variable Problem

2003-02-05 Thread Sunfire
if you want to get variables into a form by value= do something like this: and so on - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 05, 2003 3:59 PM Subject: Spam: Re: [PHP] Variable Problem > On Thursday 06 February 2