Skippy wrote:
On Mon, 19 Jul 2004 14:15:09 -0400 Jason Barnett <[EMAIL PROTECTED]>
wrote:
Markus Stobbs wrote:
$message = "
Name: $Name
Division: $Division
Phone: $Phone
Email: $Email";
...but when I change $Name and the other variables to $_POST['Name'], I
get this error:
Parse error: parse erro
Skippy wrote:
On Mon, 19 Jul 2004 14:15:09 -0400 Jason Barnett <[EMAIL PROTECTED]>
wrote:
Markus Stobbs wrote:
$message = "
Name: $Name
Division: $Division
Phone: $Phone
Email: $Email";
...but when I change $Name and the other variables to $_POST['Name'], I
get this error:
Parse error: parse erro
On Mon, 19 Jul 2004 22:01:01 +0300, Skippy <[EMAIL PROTECTED]> wrote:
> On Mon, 19 Jul 2004 14:15:09 -0400 Jason Barnett <[EMAIL PROTECTED]>
> wrote:
> > Markus Stobbs wrote:
> > > $message = "
> > > Name: $Name
> > > Division: $Division
> > > Phone: $Phone
> > > Email: $Email";
> > >
> > > ...but
On Mon, 19 Jul 2004 14:15:09 -0400 Jason Barnett <[EMAIL PROTECTED]>
wrote:
> Markus Stobbs wrote:
> > $message = "
> > Name: $Name
> > Division: $Division
> > Phone: $Phone
> > Email: $Email";
> >
> > ...but when I change $Name and the other variables to $_POST['Name'], I
> > get this error:
> >
I think the better way is to use brackets to enclose your variable...
So it would look like this :
$message = "
Name: {$_POST['Name']}
Division: {$_POST['Division']}
Phone: {$_POST['Phone']}
Email: {$_POST['Email']}";
Tim.
At 11:15 AM 7/19/2004, Jason Barnett wrote:
Markus Stobbs wrote:
I'm changin
5 matches
Mail list logo