Hi there!
For example i got a template file which is used for a boards index page, for example:
PHP Code:
echo '
<td class="maintab_' , $last , '"> </td>
</tr>
</table><br>
<p align="center">
<script type="text/javascript" language="JavaScript">
document.write('<if'+'rame width="728px" height="90px" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" scrolling="no" style="border:0px;overflow:hidden;width:728px;height:90px;" src=""></if'+'rame>');
</script>
</p>
';
}
now this won't work because in echo ' ' is an other ' part (in the script), what else can i use there instead of '?
Thanks!