home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- function php($action) {
-
- if ($action == "editini") {
- print("Opening PHP.ini<br>");
- system("notepad C:\apache\php\php.ini") or die ("<br><a href=\"index.html\">Back to Index</a>");
- print("PHP.ini Opened.<br><a href=\"index.html\">Back to Index</a>");
-
- } else {
- print("No action to perform");
- }
-
- }
-
- php($action);
- ?>