i need help with this coding. In my MySQL Database a row is extracted and leaves the value
$menus="[#]Gallery[#][#]Downloads[#][#]Cool Stuff![#]";
I then got sum code to help me get the data out and print it bit by bit.
if (eregi("#[#]", $menus, $array_output)) {
//need code
}
I need code to extract each bit and display. cuz $array_output is a array!
Gallery
Downloads
Cool Stuff!
I kno how 2 use ereg_replace but i don't kno how to take the array 2 pieces
CAN U HELP ME!