I have a .ini file that is like this:
(file.ini)
Code:
; INI FILE

[1]
name = "asdf1"

[2]
name = "asdf2"
Here is what I have in PHP right now...
(otherfile.php)
PHP Code:
<?php

$stuff 
parse_ini_file("file.ini"true);

?>
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)

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.