Accueil > > > GÉNÉRATION DE FORMULAIRES XHTML
GÉNÉRATION DE FORMULAIRES XHTML
Information sur la source
Description
/* ------------- Formulaires --------------- Principe objet, sauf que les noms des champs représentent exactement ta BD... Usage : */ include_once("class.forms.php4"); $form_in scription = new Forms("form_inscription", // nom du formulaire "traitement_inscription.php", // page action "POST"); // méthode d'envoi $form_inscription->create_form(); $form_i nscription->create_table("table_css_class", // une pseudo class CSS2 pour ton tableau "Titre du tableau"); // titre affiché au début du formulaire $form_inscription->create_input_type(" text", // type : text ou password "Prénom", // légende ça sera affiché comme ça : Prénom : [ ] (en gros) "client_prenom", // nom dans la BD 20, // nombre de caractères (c'est la size en HTML) "clients", // nom de la table MySQL NULL, // valeur par défaut "bleu"; // style css pour l'écriture du formulaire $form_inscription->close_table(); $for m_inscription->close_form(); /* Voilà, tu as ton form près à être envoyé. Regarde la doc interne pour une meilleure compréhension, mais là, déjà tu comprends le principe. */
Source
- <?php
- class Forms{
- var $name=NULL;
- var $action=NULL;
- var $method=NULL;
- var $number_of_file=0;
- var $forms_dao_db = NULL;
-
- function Forms($name,$action,$method){
- $this->name=$name;
- $this->action=$action;
- $this->method=$method;
- $this->number_of_file=0;
- $this->forms_dao_db = new DAO();
- }
-
- function create_form(){
- ?>
- <form name="<?php echo $this->name;?>" id="<?php echo $this->name;?>" method="<?php echo $this->method;?>" action="<?php echo $this->action;?>" enctype="multipart/form-data">
- <?php
- }
-
- function close_form(){
- ?>
- </form>
- <?php
- }
-
- function create_table($class,$title){
- ?>
- <table class="<?php echo $class;?>">
- <?php
- if (!is_null($title)) {
- ?>
- <tr>
- <th colspan="3"><?php echo $title;?></th>
- </tr>
- <?php
- }
- }
- function close_table(){
- ?>
- </table>
- <?php
- }
- function create_fieldset($name){
- ?>
- <fieldset>
- <legend><?php echo $name;?></legend>
- <?php
- }
- function close_fieldset(){
- ?>
- </fieldset>
- <?php
- }
-
- function getMaxLength($field,$table){
- $this->forms_dao_db->DAO_query("DESC $table");
- for($i=0;$i<$this->forms_dao_db->DAO_numrows();$i++)
- {
- $val=$this->forms_dao_db->DAO_fetch_array();
- if ($field==$val["Field"])
- {
- $p=strpos($val["Type"],"(");
- $d=strpos($val["Type"],")");
- if ($p && $d)
- {
- $l=$d-$p;
- $max=substr($val["Type"],$p+1,$l-1);
- }
- }
- }
- return $max;
- }
-
- /**
- * create_input_type($cit_type,$cit_legend,$cit_name,$cit_size, $cit_maxlength, $cit_value)
- * Type : text,password
- * legend : Text shown
- * name : name of the input
- * size : size of the input
- * maxlength : max length of the input
- * value : default value NULL
- * class : css style for this input
- */
- function create_input_type($cit_type,$cit_legend,$cit_name,$cit_size, $cit_table, $cit_value, $cit_class){
- $cit_maxlength = $this->getMaxLength($cit_name,$cit_table);
- if (is_null($cit_class)) {
- $cit_class="general_forms";
- }
- ?>
- <tr>
- <td class="tdright"><?php echo $cit_legend;?></td>
- <td>:</td>
- <td class="tdleft"><input class="<?php echo $cit_class;?>" type="<?php echo $cit_type;?>" name="<?php echo $cit_name;?>" id="<?php echo $cit_name;?>" size="<?php echo $cit_size;?>" maxlength="<?php echo $cit_maxlength;?>" value="<?php echo $cit_value;?>" /></td>
- </tr>
- <?php
- }
-
- function create_input_hidden($cih_name,$cih_value){
- ?>
- <input type="hidden" name="<?php echo $cih_name;?>" id="<?php echo $cih_name;?>" value="<?php echo $cih_value;?>" />
- <?php
- }
-
- /**
- * create_input_date($cid_legend,$cid_form_name,$cid_name,$cid_size,$cid_maxlength,$cid_value,$cid_style)
- * Params:
- * legend : Text displayed
- * form_name : The name of the current form
- * name : The name of the field
- * size : The size of the field
- * maxlength : The maximum length
- * value : The default value
- * style : The style to apply
- */
- function create_input_date($cid_legend,$cid_form_name,$cid_name,$cid_size,$cid_maxlength,$cid_value,$cid_class){
- if (is_null($cid_class)) {
- $cid_class="general_forms";
- }
- js_open_calendar(); // javascript
- ?>
- <tr>
- <td class="tdright"><?php echo $cid_legend;?></td>
- <td>:</td>
- <td class="tdleft">
- <table>
- <tr>
- <td colspan="3"><input class="<?php echo $cid_class;?>" type="text" name="<?php echo $cid_name;?>" id="id_<?php echo $cid_name;?>" size="<?php echo $cid_size;?>" maxlength="<?php echo $cid_maxlength;?>" value="<?php echo $cid_value;?>" onfocus="javascript:openCalendar('<?php echo $cid_form_name;?>','<?php echo $cid_name;?>','date')" /></td>
- </tr>
- <tr class="trcenter">
- <td><a title="<?php echo "Ouvrir Calendrier";?>" href="javascript:openCalendar('<?php echo $cid_form_name;?>','<?php echo $cid_name;?>','date')"><img src="images/cal.png" border="0" width="16" height="16" alt="Cal" title="<?php echo "Calendrier";?>" /></a></td>
- <td><a title="<?php echo "Date d'aujourd'hui";?>" href="javascript:void(0)" onclick="javascript:document.getElementById('id_<?php echo $cid_name;?>').value='<?php echo date("d/m/Y");?>'"><img src="images/today.png" border="0" width="16" height="16" alt="T!" title="<?php echo "Date d'aujourd'hui";?>" /></a></td>
- <td><a title="<?php echo "Effacer le contenu de la cellule";?>" href="javascript:void(0)" onclick="javascript:document.getElementById('id_<?php echo $cid_name;?>').value=''"><img src="images/red_drop.png" title="<?php echo "Effacer le contenu de la cellule";?>" align="bottom" alt="X" width="16" height="16" border="0" /></a></td>
- </tr>
- </table>
- </td>
- </tr>
- <?php
- }
-
- function create_radio($cr_legend,$cr_name,$cr_array_values,$cr_value,$cr_class){
- if (is_null($cr_class)) {
- $cr_class="general_forms";
- }
- ?>
- <tr>
- <td class="tdright"><?php echo $cr_legend;?></td>
- <td>:</td>
- <td class="tdleft">
- <table>
- <?php
- $cr_cpt=0;
- foreach($cr_array_values as $cr_array_values_key){
- $cr_cpt++;
- ?>
- <tr>
- <td><input class="<?php echo $cr_class;?>" type="radio" name="<?php echo $cr_name;?>" id="<?php echo $cr_name.$cr_cpt;?>" value="<?php echo $cr_array_values_key["value"];?>"<?php if ($cr_array_values_key["value"]==$cr_value) {echo " checked=\"checked\"";}?> /></td>
- <td><label for="<?php echo $cr_name.$cr_cpt;?>"><?php echo $cr_array_values_key["legend"];?></label></td>
- </tr>
- <?php
- } //foreach
- ?>
- </table>
- </td>
- </tr>
- <?php
- } //creat_radio
-
- function create_textarea($ct_legend,$ct_name,$ct_cols,$ct_rows,$ct_value,$ct_class){
- if (is_null($ct_class)) {
- $ct_class="general_forms";
- }
- ?>
- <td class="tdright"><?php echo $ct_legend;?></td>
- <td>:</td>
- <td class="tdleft">
- <textarea cols="<?php echo $ct_cols;?>" rows="<?php echo $ct_rows;?>" name="<?php echo $ct_name;?>" id="<?php echo $ct_name;?>" class="<?php echo $ct_class;?>"><?php echo $ct_value;?></textarea>
- </td>
- <?php
- }
- /**
- * $cs_legend
- * $cs_name
- * $cs_table_id
- * $cs_table_name
- * $cs_table
- * $cs_value
- * $cs_class
- */
- function create_select($cs_legend,$cs_name,$cs_table_id,$cs_table_name,$cs_table,$cs_value,$cs_class){
- if (is_null($cs_class)) {
- $cs_class="general_forms";
- }
- ?>
- <tr>
- <td class="tdright"><?php echo $cs_legend;?></td>
- <td>:</td>
- <td class="tdleft">
- <select name="<?php echo $cs_name;?>" id="<?php echo $cs_name;?>" class="<?php echo $cs_class;?>">
- <option class="two"></option>
- <?php
- $this->forms_dao_db->DAO_query("SELECT $cs_table_id,$cs_table_name FROM $cs_table");
- $i=0;
- while($val=$this->forms_dao_db->DAO_fetch_assoc()){
- $i++;
- ?>
- <option <?php echo ($i%2==0)?"class=\"two\" ":"class=\"one\" ";?>value="<?php echo $val[$cs_table_id];?>"<?php if ($val[$cs_table_id]==$cs_value){echo " selected=\"selected\"";}?>><?php echo $val[$cs_table_name];?></option>
- <?php
- }
- ?>
- </select>
- </td>
- </tr>
- <?php
- }
-
- function create_checkbox($cc_legend,$cc_name,$cc_value,$cc_script,$cc_class){
- if (is_null($cc_class)) {
- $cc_class="general_forms";
- }
- ?>
- <tr>
- <td class="tdright"><?php echo $cc_legend;?></td>
- <td>:</td>
- <td class="tdleft">
- <input type="checkbox" name="<?php echo $cc_name;?>" id="<?php echo $cc_name ?>" class="<?php echo $cc_class;?>"<?php if ($cc_value=="on") {echo " checked=\"checked\"";}?> <?php echo $cc_script;?>/>
- <label for="<?php echo $cc_name;?>"><?php echo $cc_legend;?></label>
- </td>
- </tr>
- <?php
- }
-
- function create_hint($ct_hint){
- ?>
- <tr>
- <td class="hint" colspan="3"><?php echo $ct_hint;?></td>
- </tr>
- <?php
- }
-
- function create_button($cb_button){
- ?>
- <tr>
- <td colspan="3" class="buttons">
- <?php buttons($cb_button);?>
- </td>
- </tr>
- <?php
- }
- }
- ?>
<?php
class Forms{
var $name=NULL;
var $action=NULL;
var $method=NULL;
var $number_of_file=0;
var $forms_dao_db = NULL;
function Forms($name,$action,$method){
$this->name=$name;
$this->action=$action;
$this->method=$method;
$this->number_of_file=0;
$this->forms_dao_db = new DAO();
}
function create_form(){
?>
<form name="<?php echo $this->name;?>" id="<?php echo $this->name;?>" method="<?php echo $this->method;?>" action="<?php echo $this->action;?>" enctype="multipart/form-data">
<?php
}
function close_form(){
?>
</form>
<?php
}
function create_table($class,$title){
?>
<table class="<?php echo $class;?>">
<?php
if (!is_null($title)) {
?>
<tr>
<th colspan="3"><?php echo $title;?></th>
</tr>
<?php
}
}
function close_table(){
?>
</table>
<?php
}
function create_fieldset($name){
?>
<fieldset>
<legend><?php echo $name;?></legend>
<?php
}
function close_fieldset(){
?>
</fieldset>
<?php
}
function getMaxLength($field,$table){
$this->forms_dao_db->DAO_query("DESC $table");
for($i=0;$i<$this->forms_dao_db->DAO_numrows();$i++)
{
$val=$this->forms_dao_db->DAO_fetch_array();
if ($field==$val["Field"])
{
$p=strpos($val["Type"],"(");
$d=strpos($val["Type"],")");
if ($p && $d)
{
$l=$d-$p;
$max=substr($val["Type"],$p+1,$l-1);
}
}
}
return $max;
}
/**
* create_input_type($cit_type,$cit_legend,$cit_name,$cit_size, $cit_maxlength, $cit_value)
* Type : text,password
* legend : Text shown
* name : name of the input
* size : size of the input
* maxlength : max length of the input
* value : default value NULL
* class : css style for this input
*/
function create_input_type($cit_type,$cit_legend,$cit_name,$cit_size, $cit_table, $cit_value, $cit_class){
$cit_maxlength = $this->getMaxLength($cit_name,$cit_table);
if (is_null($cit_class)) {
$cit_class="general_forms";
}
?>
<tr>
<td class="tdright"><?php echo $cit_legend;?></td>
<td>:</td>
<td class="tdleft"><input class="<?php echo $cit_class;?>" type="<?php echo $cit_type;?>" name="<?php echo $cit_name;?>" id="<?php echo $cit_name;?>" size="<?php echo $cit_size;?>" maxlength="<?php echo $cit_maxlength;?>" value="<?php echo $cit_value;?>" /></td>
</tr>
<?php
}
function create_input_hidden($cih_name,$cih_value){
?>
<input type="hidden" name="<?php echo $cih_name;?>" id="<?php echo $cih_name;?>" value="<?php echo $cih_value;?>" />
<?php
}
/**
* create_input_date($cid_legend,$cid_form_name,$cid_name,$cid_size,$cid_maxlength,$cid_value,$cid_style)
* Params:
* legend : Text displayed
* form_name : The name of the current form
* name : The name of the field
* size : The size of the field
* maxlength : The maximum length
* value : The default value
* style : The style to apply
*/
function create_input_date($cid_legend,$cid_form_name,$cid_name,$cid_size,$cid_maxlength,$cid_value,$cid_class){
if (is_null($cid_class)) {
$cid_class="general_forms";
}
js_open_calendar(); // javascript
?>
<tr>
<td class="tdright"><?php echo $cid_legend;?></td>
<td>:</td>
<td class="tdleft">
<table>
<tr>
<td colspan="3"><input class="<?php echo $cid_class;?>" type="text" name="<?php echo $cid_name;?>" id="id_<?php echo $cid_name;?>" size="<?php echo $cid_size;?>" maxlength="<?php echo $cid_maxlength;?>" value="<?php echo $cid_value;?>" onfocus="javascript:openCalendar('<?php echo $cid_form_name;?>','<?php echo $cid_name;?>','date')" /></td>
</tr>
<tr class="trcenter">
<td><a title="<?php echo "Ouvrir Calendrier";?>" href="javascript:openCalendar('<?php echo $cid_form_name;?>','<?php echo $cid_name;?>','date')"><img src="images/cal.png" border="0" width="16" height="16" alt="Cal" title="<?php echo "Calendrier";?>" /></a></td>
<td><a title="<?php echo "Date d'aujourd'hui";?>" href="javascript:void(0)" onclick="javascript:document.getElementById('id_<?php echo $cid_name;?>').value='<?php echo date("d/m/Y");?>'"><img src="images/today.png" border="0" width="16" height="16" alt="T!" title="<?php echo "Date d'aujourd'hui";?>" /></a></td>
<td><a title="<?php echo "Effacer le contenu de la cellule";?>" href="javascript:void(0)" onclick="javascript:document.getElementById('id_<?php echo $cid_name;?>').value=''"><img src="images/red_drop.png" title="<?php echo "Effacer le contenu de la cellule";?>" align="bottom" alt="X" width="16" height="16" border="0" /></a></td>
</tr>
</table>
</td>
</tr>
<?php
}
function create_radio($cr_legend,$cr_name,$cr_array_values,$cr_value,$cr_class){
if (is_null($cr_class)) {
$cr_class="general_forms";
}
?>
<tr>
<td class="tdright"><?php echo $cr_legend;?></td>
<td>:</td>
<td class="tdleft">
<table>
<?php
$cr_cpt=0;
foreach($cr_array_values as $cr_array_values_key){
$cr_cpt++;
?>
<tr>
<td><input class="<?php echo $cr_class;?>" type="radio" name="<?php echo $cr_name;?>" id="<?php echo $cr_name.$cr_cpt;?>" value="<?php echo $cr_array_values_key["value"];?>"<?php if ($cr_array_values_key["value"]==$cr_value) {echo " checked=\"checked\"";}?> /></td>
<td><label for="<?php echo $cr_name.$cr_cpt;?>"><?php echo $cr_array_values_key["legend"];?></label></td>
</tr>
<?php
} //foreach
?>
</table>
</td>
</tr>
<?php
} //creat_radio
function create_textarea($ct_legend,$ct_name,$ct_cols,$ct_rows,$ct_value,$ct_class){
if (is_null($ct_class)) {
$ct_class="general_forms";
}
?>
<td class="tdright"><?php echo $ct_legend;?></td>
<td>:</td>
<td class="tdleft">
<textarea cols="<?php echo $ct_cols;?>" rows="<?php echo $ct_rows;?>" name="<?php echo $ct_name;?>" id="<?php echo $ct_name;?>" class="<?php echo $ct_class;?>"><?php echo $ct_value;?></textarea>
</td>
<?php
}
/**
* $cs_legend
* $cs_name
* $cs_table_id
* $cs_table_name
* $cs_table
* $cs_value
* $cs_class
*/
function create_select($cs_legend,$cs_name,$cs_table_id,$cs_table_name,$cs_table,$cs_value,$cs_class){
if (is_null($cs_class)) {
$cs_class="general_forms";
}
?>
<tr>
<td class="tdright"><?php echo $cs_legend;?></td>
<td>:</td>
<td class="tdleft">
<select name="<?php echo $cs_name;?>" id="<?php echo $cs_name;?>" class="<?php echo $cs_class;?>">
<option class="two"></option>
<?php
$this->forms_dao_db->DAO_query("SELECT $cs_table_id,$cs_table_name FROM $cs_table");
$i=0;
while($val=$this->forms_dao_db->DAO_fetch_assoc()){
$i++;
?>
<option <?php echo ($i%2==0)?"class=\"two\" ":"class=\"one\" ";?>value="<?php echo $val[$cs_table_id];?>"<?php if ($val[$cs_table_id]==$cs_value){echo " selected=\"selected\"";}?>><?php echo $val[$cs_table_name];?></option>
<?php
}
?>
</select>
</td>
</tr>
<?php
}
function create_checkbox($cc_legend,$cc_name,$cc_value,$cc_script,$cc_class){
if (is_null($cc_class)) {
$cc_class="general_forms";
}
?>
<tr>
<td class="tdright"><?php echo $cc_legend;?></td>
<td>:</td>
<td class="tdleft">
<input type="checkbox" name="<?php echo $cc_name;?>" id="<?php echo $cc_name ?>" class="<?php echo $cc_class;?>"<?php if ($cc_value=="on") {echo " checked=\"checked\"";}?> <?php echo $cc_script;?>/>
<label for="<?php echo $cc_name;?>"><?php echo $cc_legend;?></label>
</td>
</tr>
<?php
}
function create_hint($ct_hint){
?>
<tr>
<td class="hint" colspan="3"><?php echo $ct_hint;?></td>
</tr>
<?php
}
function create_button($cb_button){
?>
<tr>
<td colspan="3" class="buttons">
<?php buttons($cb_button);?>
</td>
</tr>
<?php
}
}
?>
Historique
- 25 juin 2006 10:45:21 :
- Définition de l'usage
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
remplissage automatique de champs de formulaire [ par drek ]
J'aimerais savoir si la chose suivante est possible en php :je clique sur un lien de mon site donnant sur la page d'un autre site qui contient un form
Formulaire php spéciale [ par jojo545 ]
voila mon problème : (encore 1 je sais) sur le net j'ai un formulaire avec un champs A et un bouton send ....comment je peux faire pour env
Login automatique après création de compte [ par Sniark ]
Bonjour,Je développe en ce moment un site avec un espace membres. J'ai un formulaire d'identification qui marche parfaitement, et un formulaire de cré
classeforms.php [ par skulls94 ]
bonjour,je dois realiser un formulaire qui interagit avec une bdd. Pour cela j'utilise la classe classeforms.php voir: http://www.toutestfacile.com/cl
envoi de formulaire automatique [ par mathy74 ]
bonjour, On m'a conseillé ce site pour poser ma question, mais je n'ai pas touvé d'endroits pour la mettre : voilà mon problèbe, je dois me connecter
validation automatique de formulaire [ par dezossor ]
Bonjour,Je viens vers vous car je commence à être cours en compétence.Je suis actuellement en train de développer une application web en php et cette
formulaire nouvelle génération [ par b2o2a ]
Bonjour à tous J'aimerais savoir comment créer un formulaire genre celui d'identification de ce site (code-sources.com) avec grisage du navigateur et
formulaire nouvelle génération [ par b2o2a ]
bonjour à tous, j'aimerais savoir comment créer un formulaire du genre celui d'authentification de ce site (codes-sources.com): le grisage du navigate
Reponse automatique email via formulaire de contact [ par admiraljah ]
bonjour, Realisation via HTML si possible. j'ai un soucis pour faire ou même créer une réponse automatique. Je vous explique : je veux que si une pers
PHP de traitements de formulaire [ par zoalia ]
Bonjour, voilà je vient d'apprende le xhtml et le css, mais je n'y connait rien en php, j'ai fait un formulaire (que le xhtml et le css), et souhaiter
|
Derniers Blogs
[SHAREPOINT] LES SESSIONS TECHDAYS 2012.[SHAREPOINT] LES SESSIONS TECHDAYS 2012. par Patrick Guimonet
Voici donc pour ceux qui n'ont pas pu venir, ou ceux qui n'ont pas pu toutes les suivre la liste des sessions SharePoint aux TechDays 2012, que je mettrais à jour dès que les liens des vidéo seront disponibles. Ou ici : http...
Cliquez pour lire la suite de l'article par Patrick Guimonet TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3TECHDAYS PARIS 2012 : SESSION PLEINIèRE JOUR 3 par ROMELARD Fabrice
Speaker: Bernard Ourghanlian Cette session est comme chaque jour transmise en live par BrainSonic, et j'ai donc suivi cette troisième pleinière par ce moyen sur mon iPad . Elle est dédiée comme chaque année à la mise en perspective de l'é...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice MISHRA READER : UN LECTEUR RSS TRèS ZUNE STYLE EN OPEN SOURCE !MISHRA READER : UN LECTEUR RSS TRèS ZUNE STYLE EN OPEN SOURCE ! par Vko
Hier durant une session dédiée aux Techdays 2012, j'ai eu le plaisir d'annoncer la sortie de la Béta 2 de Mishra Reader. C'est quoi ? Pour les utilisateurs, c'est une vraie expérience de lecture de flux RSS sur Windows. Rien à voir avec les produit...
Cliquez pour lire la suite de l'article par Vko [FRAMEWORK 4] LES TASKS ET LE THREAD UI[FRAMEWORK 4] LES TASKS ET LE THREAD UI par fathi
Je viens de passer quelques temps au TechDay's et j'ai pu voir pas mal de session intéressante. Par contre une chose m'a un peu étonné lors de certaines de ces sessions qui abordaient les améliorations du framework .NET (donc le 4.5) : en gros, bea...
Cliquez pour lire la suite de l'article par fathi WORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBEWORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBE par JeremyJeanson
Depuis déjà un an, je conseille vivement les utilisateurs de Workflow Foundation 3 à migrer vers la version 4. L'information qui va suivre ne devrait donc pas trop prendre au dépourvu les personnes qui m'ont suivi. Je profite de ce poste, pour faire le re...
Cliquez pour lire la suite de l'article par JeremyJeanson
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|