Hello everybody,
I got a question about merging a field, here is rthe code
PHP
$tbs->MergeBlock('rsnw',$conn,"SELECT wm12_DtPublDa as 'data', wm12_TitSint as 'titolo', wm12_TextExt as 'articolo', wm12_URLlink as 'url'
FROM wm12
WHERE IDwm12=14"); |
HTML
<span align="justify">[rsnw.articolo]
<br><br><a href="[rsnw.url]" target="_blank">[rsnw.url]</a></span> |
The problem is this: the recordset returns an url with a ; (semicolon) to separate more urls. I need to have as
<a href="[rsnw.url]" target="_blank">[rsnw.url]</a> |
as the ; (semicolon) in order to have the right links for each url. It's about PHP or HTML side?
Thanks