Forum Moderators: coopster
You can get some help on basic data retrieval Here [webmasterworld.com], taken from our library.
For further help it would be necessary for you to show us what your query is and how are you managing the data retrieved.
eelix
eelix
$myVariable = 'Hello World';
$row['textfield'] = 'I just want to say $myVariable';
$textfield=stripslashes($row['textfield']);
echo($textfield) . '<br />';
eval("\$textfield= \"$textfield\";");
echo($textfield);
I just want to say $myVariable
I just want to say Hello World