Changing a php "echoed" div attribute with php
- by Zakaria
Hi everybody,
I'm using PHP to echo a content stored on my database.
The content is a DIV carrying any type of data.
The problem is that I don't know the ID and I have some problems with these
DIVs if I try to display them more that once.
So, the idea is to modify the DIV id each time I'd like to display them.
Something like this:
<?php modify_div_id($data,"id-456"); ?>
Is there a solution for this problem?
Thank you very much,
regards.