php-general | 2005051
Date: 05/15/05
- Next message: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Previous message: emre: "Re: [PHP] changing php ini location"
- Next in thread: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Reply: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Reply: Krid: "Re: [PHP] what am I missing..interpolation?"
- Reply: Marek Kilimajer: "Re: [PHP] what am I missing..interpolation?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Next message: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Previous message: emre: "Re: [PHP] changing php ini location"
- Next in thread: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Reply: Justin Gruenberg: "Re: [PHP] what am I missing..interpolation?"
- Reply: Krid: "Re: [PHP] what am I missing..interpolation?"
- Reply: Marek Kilimajer: "Re: [PHP] what am I missing..interpolation?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

