Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2005051

Re: [PHP] what am I missing..interpolation? From: blackwater dev (blackwaterdev <email protected>)
Date: 05/15/05

Thanks for the info but I tried it both ways and get this error:

Parse error: parse error, unexpected T_FOR, expecting ',' or ';' in
dogs.php(11) : eval()'d code on line 1

On 5/15/05, Krid <krid <email protected>> wrote:
> Hi!
> Try
> eval("echo $string");
>
> blackwater dev wrote:
> > Hello,
> >
> > this works fine:
> >
> > $name="fido";
> > $string="my dog's name is $name";
> > echo $string;//prints my dog's name is fido
> >
> > but when I store the string "my dog's name is $name" in the db and pull it out:
> >
> > //do the query
> > $row=$datab->fetch();
> > $name="fido";
> > $string=$name['db_column'];
> > echo $string//prints my dog's name is $name
> >
> > How can I get it to work with the db?
> >
> > Thanks!
> >
>

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