Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
newclient2.php
Package: Generateur_v13.rar [view]
Upload User: feiyaoda
Upload Date: 2016-11-21
Package Size: 9556k
Code Size: 1k
Category:
WEB Mail
Development Platform:
PHP
- //script newclient2
- <html>
- <head>
- <link rel="stylesheet" type="text/css" href="./modules/client/style.css">
- </head>
- <?
- session_start();
- include("page_haut.inc");
- require ("xml_domit_parser.php");
- require ("xml_domit_utilities.php");
- //require ("xml_saxy_parser.php ");
- require ("xml_domit_nodemaps.php");
- $cmd=& new DOMIT_Document();
- $success=$cmd->loadXML("./modules/client/admin/modules/administration/clients.xml");
- $comp = count($cmd->documentElement->childNodes);
- $vrai='0';
- for($i=0;$i<$comp;$i++){
- $currentsite =& $cmd->documentElement->childNodes[$i];
- $clnom=$currentsite->childNodes[1]->firstChild->nodeValue;
- $clmp=$currentsite->childNodes[2]->firstChild->nodeValue;
- if(($clnom==$nom)&&($clmp==$mp)){
- $n=$i;
- $currentsite =& $cmd->documentElement->childNodes[$n];
- $clid=$currentsite->childNodes[0]->firstChild->nodeValue;
- $vrai='1';
- }
- }
- if($vrai=='1'){
- ?>
- <script>
- document.location='?m=client&a=confirme&clid=<? echo $clid ?>';
- </script>
- <?
- }
- else{
- ?>
- <script>
- document.location='?m=client&a=newclient3';
- </script>
- <?
- }
- ?>