문제

As i do some html markup thru php output:

echo '<h2>Events Calendar</h2><table border="2" width="100%"><th>';
... 

a weird slach appears in this way (under Events Calendar and above the html table markup): enter image description here

As i look in debugger i find no hint where it's from... The table markup is ok, all tags are paired. What's the cause might be?

도움이 되었습니까?

해결책

Most likely it is outside your proper table markup, like /<tr>

Anything between the tags in a table is normally rendered before the table.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top