"Fossies" - the Fresh Open Source Software Archive

Member "eventh/download.php" (15 Aug 2007, 2242 Bytes) of package /linux/privat/old/eventh-1.1.11.tar.gz:


The requested HTML page contains a <FORM> tag that is unusable on "Fossies" in "automatic" (rendered) mode so that page is shown as HTML source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "download.php" see the Fossies "Dox" file reference documentation.

    1 <?
    2 /*
    3 This file is part of Event Horizon (EVH).
    4 
    5 EVH is free software; you can redistribute it and/or modify
    6 it under the terms of the GNU General Public License as published by
    7 the Free Software Foundation; either version 3 of the License, or
    8 (at your option) any later version.
    9 
   10 EVH is distributed in the hope that it will be useful,
   11 but WITHOUT ANY WARRANTY; without even the implied warranty of
   12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13 GNU General Public License for more details.
   14 
   15 You should have received a copy of the GNU General Public License
   16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
   17 */
   18 
   19 include "inc.php";
   20 
   21 if (isset($mod) and $mod == 1) {
   22     $formurl="modfile.php";
   23     $heading="Modify";
   24     $codetype = "$modification";
   25 }
   26 else {
   27     $formurl="downloadfiles.php";
   28     $heading="Download";
   29     $codetype = "$verification";    
   30 }
   31 ?>
   32 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
   33 <html>
   34 <head>
   35 <title><?=$appname; ?> - <?=$heading; ?></title>
   36 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   37 <link href="default.css" rel="stylesheet" type="text/css">
   38 </head>
   39 <body>
   40 <?=$titleandmenu; ?>
   41 <form action="<?=$formurl; ?>" method="post" enctype="multipart/form-data" name="form1">
   42 <table width="500"  border="0" align="center" cellpadding="3" cellspacing="1" class="border">
   43   <tr>
   44     <th width="150" align="left" valign="top" nowrap class="header" scope="row"><?=$emailfield2title; ?></th>
   45     <td align="left" valign="middle" nowrap class="content" scope="row"><input name="YourEmail" type="text" id="YourEmail" size="30"></td>
   46   </tr>
   47   <tr>
   48     <th width="150" align="left" valign="top" nowrap class="header" scope="row"><?=$codetype; ?> Code </th>
   49     <td align="left" valign="middle" nowrap class="content" scope="row"><input name="VerificationNumber" type="text" id="VerificationNumber" size="30"></td>
   50   </tr>
   51 </table>
   52 <p align="center">
   53   <br>
   54   <input name="Submit" type="submit" onClick="MM_validateForm('YourEmail','','RisEmail','VerificationNumber','','R');return document.MM_returnValue" value="Submit">
   55 </p>
   56 </form>
   57 <?
   58 print $footer;
   59 ?>
   60 
   61 </body>
   62 </html>