Now I have a request containing HTML code, and when I select it in php, it makes code,
$query = mysql_query("SELECT * FROM `table`")or die(mysql_error()); while($arr = mysql_fetch_array($query)){ $num = mysql_num_rows($query); $code = $arr ['code']; echo $code; }
and this request has this code <a href="http://google.com">Click Here</a>
when he repeats, he shows me. Click here, but I want it to sow me code.
So how can I do this in PHP.
Thanks Klaus
source share