RE: [PHP] Variabels in stored txt

2005-05-31 Thread Jay Blanchard
[snip] $get_var1 = mysql_query(SELECT * FROM table1 WHERE id LIKE '1' LIMIT 1); while($record=mysql_fetch_assoc($get_var1)) { $show_var = $record['text']; } [/snip] do an echo $show_var; to see what is returned right here -- PHP General Mailing List

Re: [PHP] Variabels in stored txt

2005-05-31 Thread Niels Riis Kristensen
On 31/05/2005, at 22.19, Jay Blanchard wrote: [snip] $get_var1 = mysql_query(SELECT * FROM table1 WHERE id LIKE '1' LIMIT 1); while($record=mysql_fetch_assoc($get_var1)) { $show_var = $record['text']; } [/snip] do an echo $show_var; to see what is returned

RE: [PHP] Variabels in stored txt

2005-05-31 Thread Jay Blanchard
[snip] [snip] $get_var1 = mysql_query(SELECT * FROM table1 WHERE id LIKE '1' LIMIT 1); while($record=mysql_fetch_assoc($get_var1)) { $show_var = $record['text']; } [/snip] do an echo $show_var; to see what is returned right here Allready did, no result.

RE: [PHP] Variabels in stored txt

2005-05-31 Thread Chris W. Parker
Niels Riis Kristensen mailto:[EMAIL PROTECTED] on Tuesday, May 31, 2005 2:09 PM said: On 31/05/2005, at 22.19, Jay Blanchard wrote: [snip] $get_var1 = mysql_query(SELECT * FROM table1 WHERE id LIKE '1' LIMIT 1); while($record=mysql_fetch_assoc($get_var1)) {