I have a .ini file that is like this:
(file.ini)
Here is what I have in PHP right now...Code:; INI FILE [1] name = "asdf1" [2] name = "asdf2"
(otherfile.php)
Continuing on from that, how can I make another .php file so that if you entered either 2 or asdf2 it would do the same thing? (It needs to use the ini file too)PHP Code:<?php
$stuff = parse_ini_file("file.ini", true);
?>
I do not know exactly how to explain all this, due to me not having experience with ini and php stuff, so tell me if I need to refrase that.




Reply With Quote