Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

dvd information
golfing products
finance products

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


read the contents of an ini file

read the contents of an ini file

The contents of the ini file are listed below

[settings1]
text1 = "hello"
text2 = "world"

[settings2]
number1 = 4
number2 = 8

//print out all of the contents of the test.ini file

<?php
$ini_array = parse_ini_file("test.ini");
print_r($ini_array);
?>