View Single Post

  #3 (permalink)  
Old 06-30-2003
Steven
 
Posts: n/a
Default Re: I got a "Parse error" when try to get data from form

Thanks !! My first post is a typo (missing the parenthesis ). But I just
make it work by using double quote for ssn:

if(empty($_POST["ssn"])){
....

The single quote will work if I assign the variable first, but won't work if
I don't. But it is working fine now with the double quote... Some kind of
type casting ?

-Regards,
Steven


"Marcus" <JumpMan222@aol.com> wrote in message
news:3EFFE55B.7080007@aol.com...
> So it still isn't working?
>
>
>
> Steven wrote:
> > The error I got is:
> >
> > Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
> > `T_NUM_STRING'
> >
> > Thanks.
> >
> > "Steven" <xueming@attbi.com> wrote in message
> > news:oqRLa.61294$R73.8171@sccrnsc04...
> >
> >>I got a "Parse error: parse error in ..." in this line:
> >>
> >> if(empty($_POST['ssn']){
> >>....
> >>
> >>But if I fist assign $ssn=$_POST['ssn']; and then if(empty($ssn){ ... it

> >
> > is
> >
> >>working.
> >>
> >>Any advice? Thanks in advance.
> >>
> >>Reards,
> >>-Steven
> >>
> >>

> >
> >
> >

>



Reply With Quote