Am using PHP as my server side scripting language. I want to change
it to mod_lua scripting language. In my PHP script I used like ..
<?php
$result=$_GET['value']; // value contains a String
$fp = fopen('file.txt', 'w');
fwrite($fp,$result);
fclose($fp);
?>
A string value is simply stored into a file with PHP . Is these programncan be converted into mod_lua ?? I don't know how to make it possible in
mod_lua ? please help ..