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 |
|
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,
|