문제

How do i get two xml results in one column as output. Now i get for evru output an column.

pub += '<td valign="top" class="col1">' + roepnaam + '</td>' + '\n';    
pub += '<td valign="top" class="col2">' + naamMedewerker + '</td>' + '\n';

Can anyone help em out. I want those together. I tried this:

pub += '<td valign="top" class="col1">' + roepnaam + + naamMedewerker + '</td>' + '\n';

But didn't work. Please help me out?

도움이 되었습니까?

해결책

Here: Remove +

 pub += '<td valign="top" class="col1">' + roepnaam + naamMedewerker + '</td>' + '\n';
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top