. * * Version 0.1 * Author: Octavio Benedi Sanchez */ function save_ini_file($array) { global $section; global $plugin; global $base_plugin; //response_additem("append", '
'.print_r($array,true).'','interface'); $writepath=$base_plugin.'data/long_range_link_data'; $fp=fopen($writepath,'w'); foreach($array as $section => $items) { //response_additem("append", '
'.print_r($items,true).'','interface'); fwrite($fp,"[$section]\n"); foreach($items as $key => $value) { fwrite($fp,"$key=$value\n"); } } } ?>