Etude et conception d'un logiciel de facturation voip( Télécharger le fichier original )par Rodrigues KWATE KWATE Institut Superieur du Sahel Maroua/Cameroun - Master 1 2011 |
Bibliographie
AnnexesAnnexesAnnexe 1 : une partie du code stat1.php<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <!-- DW6 --> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>statistiques</title> <link rel="stylesheet" href="2col_leftNav.css" type="text/css" /> <style type="text/css"> <!-- .Style1 {color: #000000} --> </style> </head> <!-- The structure of this file is exactly the same as
2col_rightNav.html; <body> <?php /* Insérer du code PHP ici */ include("fonctions.php"); ?> <div id="masthead"> <center><h1 id="siteName"><img src="sae.jpg" /></h1> <h1>SYSTEMES ET APPLICATIONS ELECTRONIQUES </h1> <h1>SAE VOIP BILLING SYSTEM </h1></center> <div id="globalNav"> <center><a href="index.php">Acceuil</a> | <a href="stat1.php">Statistiques</a> | <a href="annuaire.php">Ajout/Supp Utilisateur</a> | <a href="polifacture.php">Politique de facturation </a> | <a href="budget">Gestion du Budget</a> |</center></div> </div> <!-- end masthead --> <div id="content"> <div id="breadCrumb"> </div> <h2 id="pageName"><blink>Statistiques</blink></h2> <div class="feature"> <center> Vous devez remplir le formulaire suivant :</center> <div id="masthead">
Annexes <form action="" method="post"> <p>Appellant : <input name="calling_station_id" type="text" /> </p> <p>Période du <input type="text" name="textfield" /> Au <input type="text" name="textfield2" /> jj/mm/aaaa</p> <input name="Envoyer" type="submit" value="Envoyer" /> </form> </div> <?php /* Insérer du code PHP ici */ //On se connecte connectMaBase(); // on declaree les variables tampon echo'La facture détaillée'; $duree=0; $prix=0; $prixtotal=0; $a=0; $nbcall=0; // On prépare la requête $sql = 'SELECT h323_disconnect_time, called_station_id, acct_session_id, acct_session_time FROM tbvoip WHERE calling_station_id="9910" AND acct_session_time!="0"'; // On lance la requête (mysql_query) et on impose un message d'erreur si la requête ne se passe pas (or die) $req = mysql_query($sql) or die('Erreur SQL !<br />'.$sql.'<br />'.mysql_error()); //boucle echo '<table border="1"> <tr> <td colspan="3"><h2>Date et Heure</h2></td> <td colspan="3"><h2>Appelé</h2></td> <td colspan="3"><h2>Cout en FCFA</h2></td> <td colspan="3"><h2>Identifiant de la session</h2></td> <td colspan="3"><h2>durée en s </h2></td> </tr>'; while ($data = mysqljetch_array($req)) { // on affiche les résultats // on calcule le prix
|
|