3 $custmod = $_POST['custmod'];
4 }elseif($_GET['custmod']){
5 $custmod = $_GET["custmod"];
8 <form method
="post" action
="?scm=configmod" >
9 <input type
="text" name
="custmod" value
="<?php echo $custmod;?>" />
10 <input type
="Submit" value
="Choose Custom Module" />
15 echo "No Custom Module Selected";
17 }elseif(!file_exists("../../modules/".$custmod."/config.php")){
18 echo "Module Does Not Exist";
21 $file = $fspath . "/modules/" . $custmod . "/config.php";
22 $data = file_get_contents($file);
24 Editing Custom Modules Configuration
<?php
echo $_POST['custmod'];?
><br
><br
>
25 <form name
="RTEDemo" action
="changes/configmod.php" method
="post" >
26 <textarea cols
="65" rows
="20" name
="data"><?php
echo $data;?
></textarea
>
27 <input type
="hidden" name
="custmod" value
="<?php echo $custmod; ?>" />
28 <p
><input type
="submit" name
="submit" value
="Submit Changes" /></p
>