Ejemplo n.º 1
0
<?php

session_start();
require '../../contr/controller.php';
$ferry = get_pro2($_GET['code_retour']);
$francois = check_clien3($_GET['code']);
$bako = check_info($ferry['user_session']);
?>
<!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">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="author" content="ferry francois bakongo">
    <title>Proformat rodéo</title>
    <style type="text/css">
        <!--
        .Style2 {
            font-family: "Times New Roman", Times, serif;
            font-style: italic;
        }
        -->
    </style>
</head>

<body>
<table  width="851" border="2" cellspacing="2" cellpadding="2">
    <tr>
        <th colspan="11" style="border:hidden" scope="col"></th>
    </tr>
    <tr>
        <td style="border:hidden"  height="49" colspan="11">
Ejemplo n.º 2
0
/**
 * @param $id_client
 * fomction qui va nous permettre d'affiche les informations d'un client
 */
function print_client3($id_client)
{
    $clientunik = check_clien3($id_client);
    echo '
                        <span> NOM COMPLET DU CLIENT :</span> <span>' . $clientunik['nom'] . '</span> <br><br>
                        <span> NUMERO DE COMPTE DU CLIENT :</span> <span>' . $clientunik['num_compte'] . '</span> <br><br>
                        <span> QUALITE DU CLIENT :</span> <span>' . $clientunik['qualite'] . '</span> <br><br>
                        <span> ABREGE DU CLIENT :</span> <span>' . $clientunik['abrege'] . '</span> <br><br>
                        <span> ADRESSE DU CLIENT :</span> <span>' . $clientunik['adresse'] . '</span> <br><br>
                        <span> PAYS DU CLIENT :</span> <span>' . $clientunik['pays'] . '</span> <br><br>
                        <span> VILLE DU CLIENT :</span> <span>' . $clientunik['cp'] . '</span> <br><br>
                        <span> TELEPHONE DU CLIENT :</span> <span>' . $clientunik['telephone'] . '</span> <br><br>
                        <span> EMAIL DU CLIENT :</span> <span>' . $clientunik['email'] . '</span> <br><br>
                        <span> SITE DU CLIENT :</span> <span>' . $clientunik['site'] . '</span> <br><br>
    ';
}