I have a problem with the loadVars.
i am extracting the data out of a MySQL db via php.
my code:
that loads fine, but if i include <font color=#99FF00></font> it won't display on the page?
i have set the HTML tab to true!
any ideas?
Regards,
Martin
Gaming Help And Info:
i am extracting the data out of a MySQL db via php.
my code:
Code:
<?php
include "../../gr/config.php";
$q = mysql_query("SELECT title, news, subDate FROM gr_news WHERE view = 'yes'") or die("news=".mysql_error());
while(list($t,$n,$sd) = mysql_fetch_row($q)){
echo "news=<b>$t</b><br>-$sd<br><br>$n<br><br>";
}
?>
that loads fine, but if i include <font color=#99FF00></font> it won't display on the page?
Code:
<?php
include "../../gr/config.php";
$q = mysql_query("SELECT title, news, subDate FROM gr_news WHERE view = 'yes'") or die("news=".mysql_error());
while(list($t,$n,$sd) = mysql_fetch_row($q)){
echo "news=<font color=#99FF00><b>$t</b><br>-$sd</font><br><br>$n<br><br>";
}
?>
i have set the HTML tab to true!
any ideas?
Regards,
Martin
Gaming Help And Info: