Question

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?

Was it helpful?

Solution

Here: Remove +

 pub += '<td valign="top" class="col1">' + roepnaam + naamMedewerker + '</td>' + '\n';
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top