#!/usr/bin/php query("select nodes.*,node_content.*,nodes.node_id as node_id from nodes left join node_content on nodes.node_id=node_content.node_id where node_type='14'"); while ($set->next()) { $node_content=$set->getString('node_content'); $template_id=$set->getString('node_id'); $fp = fopen (OWN_TEMPLATE_DIR.$template_id.".tpl", "w+"); fwrite($fp,$node_content); fclose($fp); chown(OWN_TEMPLATE_DIR.$template_id.".tpl","www"); } ?>