So lets say I had something like this...
PHP Code:
$result = mysql_query('SELECT * FROM templates');
while ($row = mysql_fetch_assoc($result))
{
$templates[$row['name']] = $row['template'];
}
echo $templates['header'];
echo $templates['index'];
How would I complete the transformation? Btw noppid this isn't for a vb, I'm just trying to learn PHP by creating a complex news program