Why doesn't the following code work:
<div class="content" editblock="one" userblock="<?php echo $vak; ?>">
<p>Tekst...</p>
</div>
<!-- editblock="one" -->
I include the variable $vak into the page, it's just a easy solution to create new pages.
The only problem with this, when i edit the page, it opens correctly, only when i
save it, the userblock changes into: userblock="<?php echo $vak; ?> , so without "> on the end.
Is there a solution for this problem?
Greets
#########################
The following code is working propperly:
<div class="content" userblock="<?php echo $vak; ?>" editblock="one"> <p>Tekst...</p>
</div>
<!-- editblock="one" -->
Can anyone explaine the difference between these codes to me.
Last edited on Tue Oct 10th, 2006 05:09 pm by ericcoumans |