okay, I got my skin\template problem fixed....so now I am almost finished with the design side of things...which brings up another problem.
What I have is this...
in index.php i have a basic header, leftnav, rightnav, copyrigh(footer) type layout set up. and in the left and right navs I have it include: L_blocks.php and R_blocks.php...
what code would I have to set up so that the only code I need to put into L_blocks.php and R_blocks.php would be something like this:
$block_01_title = "Block Title";
$block_01_nowhtspc = "blocktitle";
$block_01_content .= "./blocks/";
$block_01_content .= "$block_01_nowhtspc";
Eventully all of that will be in SQL but I am starting small. So really my problem is that I don't know the code I need.
What i need is a way to include all of the blocks into R_blocks.php or L_blocks.php BUT IT HAS TO BE DYNAMIC! So i don't have to go and edit L_blocks.php or R_blocks.php and tell it where to put the blocks info. I need it to kinda read the file and create a block for everyblock listed in the file?
ya I'm a newb...and yes I need help 😕