PHP Classes

Your can create a complete journey showing: open, print, modi...

Recommend this page to a friend!

      A simple ini parser  >  All threads  >  Your can create a complete journey...  >  (Un) Subscribe thread alerts  
Subject:Your can create a complete journey...
Summary:Package rating comment
Messages:1
Author:Claudio DS
Date:2016-02-09 20:35:41
 

Claudio DS rated this package as follows:

Utility: Sufficient
Consistency: Sufficient
Examples: Not sure

  1. Your can create a complete journey...   Reply   Report abuse  
Picture of Claudio DS Claudio DS - 2016-02-09 20:35:41
Your can create a complete journey showing: open, print, modify, save.
I included one example for you
/** **/
include("class.iniparser.php");
$cfg = new iniParser("config.ini");
$name = $cfg->get("Owner","firstname")." ".$cfg->get("Owner","lastname")."<br />";
echo $name."<br />";
$cfg->setValue("Tool","name","claudio");
$cfg->save("config.ini");

Best regards,