[ Index ]

Source Code Reference for V1.00

title

Body

[close]

/ -> newuser.php (source)

   1  <?php /* $Id: newuser.php 206 2008-08-15 23:27:16Z pedroix $ $URL: https://web2project.svn.sourceforge.net/svnroot/web2project/trunk/newuser.php $ */
   2  $uistyle = 'web2project';
   3  ?>
   4  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   5         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   6  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   7  <head>
   8      <title><?php echo 'New User Signup'; ?></title>
   9      <meta http-equiv="Content-Type" content="text/html;charset=<?php echo 'UTF-8'; ?>" />
  10      <meta http-equiv="Pragma" content="no-cache" />
  11      <link rel="stylesheet" type="text/css" href="./style/<?php echo $uistyle; ?>/main.css" media="all" />
  12      <style type="text/css" media="all">@import "./style/<?php echo $uistyle; ?>/main.css";</style>
  13      <link rel="shortcut icon" href="./style/<?php echo $uistyle; ?>/images/favicon.ico" type="image/ico" />
  14  </head>
  15  
  16  <body bgcolor="#f0f0f0" onload="//document.loginform.username.focus();">
  17  <?php
  18  include  'createuser.php';
  19  ?>
  20  
  21  <?php if ($AppUI->getVersion()) { ?>
  22  <div align="center">
  23      <span style="font-size:7pt">Version <?php echo $AppUI->getVersion(); ?></span>
  24  </div>
  25  <?php } ?>
  26  <div align="center">
  27  <?php
  28  echo '<span class="error">' . $AppUI->getMsg() . '</span>';
  29  
  30  $msg = '';
  31  $msg .= phpversion() < '4.1' ? '<br /><span class="warning">WARNING: web2project is NOT SUPPORT for this PHP Version (' . phpversion() . ')</span>' : '';
  32  $msg .= function_exists('mysql_pconnect') ? '' : '<br /><span class="warning">WARNING: PHP may not be compiled with MySQL support.  This will prevent proper operation of web2Project.  Please check you system setup.</span>';
  33  echo $msg;
  34  ?>
  35  </div>
  36  </body>
  37  </html>


Generated: Thu Aug 21 03:00:13 2008 Cross-referenced by PHPXref 0.7