Dear All,
Greetings,
I retrieve message from remote database, it seem like as following :
<p><span style="font-size: 13px;">Product <b>information</b></span></p>
it seem like part of php script.
so, I add header and footer to make it as part of HTML like the following :
<html>
<body>
<?php
$string = "<p><span style="font-size: 13px;">Product <b>information</b></span></p>";
$string = html_entity_decode($string);
echo $string;
?>
</body>
</html>
but the webview didn't view it
The code (of what mentioned above) as following:
Dim str As String
str = "<html><body><?php $string =" & Chr(34) & "<p><span style="font-size: 13px;">Product <b>information</b></span></p>" & Chr(34) & ";$string = html_entity_decode($string); echo $string; ?></body></html>"
Webview1.LoadHtml(ss)
'ProdWeb.LoadUrl("
www.vertex-technology.com")
Webview1.Invalidate
After many testing, I found that : Webview didn't view any php script inside,
Any suggestion to view the above message.
Thanks in advance.
best regards