Hello Good day,
I've made a Loop functions on a php and inside there is another function of loop. I did that because I'm not good on looping (loop within the loop), but what happen is the output of the function is placing outside the table. I already check the Quotes(') or something, but still it is placing outside. Anyone can explain to me why?
function alphaCount()
{
for ($i=65; $i<=90; $i++)
{
echo char($i);
}
}
for($i=1;$i<=10;$i++){
echo '<td class="char-'.$i.'-'.$this->alphaCunt.'"> </td>';
}