Im trying to create a way of storing php scripts in a mySQL database, and
then execute them using temporary files as executable script buffers..
The database retrieval is working fine but the file does not...

Ive got a table with 4 fields: execID, execName, execDesc and execProc
The last one contains php code.

This is what i have so far:


<?php
mysql_connect($host,$user,$pw);
mysql_select_db($db);
$query = "SELECT execProc FROM exec WHERE execID = 1";
$result = mysql_query($query);
while($row = mysql_fetch_array($result))
{
    $proc = $row['execProc'];
}
$handle = tmpfile();
fwrite($handle, $proc);
include("name of the temporary file");
fclose($handle);
?>



But i need to get the name of the tempfile in order to include it..
All i have now is the handle_id
Any help appreciated.

Reply via email to