PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Mostafa Abd-El-Hamid   PHP Azure Active Directory   index.php   Download  
File: index.php
Role: Auxiliary script
Content type: text/plain
Description: Example script
Class: PHP Azure Active Directory
Manage users and groups of Windows Azure
Author: By
Last change:
Date: 8 years ago
Size: 636 bytes
 

Contents

Class file image Download
<HTML>
<head>
<?php
   
//Include menu options applicable to all pages of the web site
   
include("PhpSampleTemplate.php");
   
//Enable the option to display any parsing errors.
   
error_reporting(E_ALL | E_STRICT);
   
ini_set('display_errors', 1);
?>
<title>
Windows Azure Active Directory Management Console
</title>
</head>
<BODY>
<h1>
    Windows Azure Active Directory Management Console
</h1>
<p>
    <a href="DisplayUsers.php"><b>User Management</b></a>
    <br/><br/>
    <a href="DisplayGroups.php"><b>Group Management</b></a>
    <br/><br/>
    <a href="GetChanges.php"><b>Synchronize Changes</b></a>
</p>
</BODY>
</HTML>