i need a little help here..
this is call from sql
and this line
works fine...
but i'd like to write that with single quotes
like this
and here is the problem
cos i get displayed like this
instead this
so how should i write this part
to get proper echo, using single quotes??
this is call from sql
Code:
$pr = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM f_rub")); $po = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM f_odg"));
Code:
echo "<a href=\"tabla.php?dela=browsing&seja=$seja\">Tabla ($pr[0]|$po[0])</a>";
but i'd like to write that with single quotes
like this
Code:
echo '[url="tabla.php?dela=browsing&seja='.$seja.'"]Tabla ($pr[0]|$po[0])[/url]';
cos i get displayed like this
Code:
Tabla ($pr[0]|$po[0])
Code:
Tabla 5|10
Code:
Tabla ($pr[0]|$po[0])
Comment