I would suggest you do the following:
Replace
PHP Code:
while($row = mysql_fetch_array($pulltemplate,MYSQL_NUM)) {
with
PHP Code:
while ($row = mysql_fetch_array($pulltemplate,MYSQL_ASSOC)) {
And then, if the original query is
PHP Code:
$pulltemplate = mysql_query("SELECT id,name,content FROM templates");
Then you can access the variables by:
PHP Code:
$row['id'], $row['name'], $row['content']