php - How do I store data with execute permission only? -


i have task must store data without database server present - , have script execute permissions - there possibilities?

you should able link external database? potential solution?

if server has been badly configured, , run scripts different user different permissions etc you, perhaps can write script make executing user create file can edit? along lines of (in php)

exec("echo '' > dump.mem | chmod 0777 dump.mem"); 

Comments