Bonjour,

je suis entrain de créer une petite appli qui va me permettre de generer des codes du type

XXX1ddmmyy1001XXX1

Qui correspont a :

Photographe : XXX1
date: ddmmyy ( ex : 010212)
Carte : 1
Nb_client: 001
magasin : XXX1

Voici mon code


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php require_once('Connections/newtrip.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
 
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
 
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break; 
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
 
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
 
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO Code_client (photographe, `date`, carte, nb_client, magazin) VALUES (%s, %s, %s, %s, %s)",
GetSQLValueString($_POST['photographe'], "text"),
GetSQLValueString($_POST['date'], "date"),
GetSQLValueString($_POST['carte'], "int"),
GetSQLValueString($_POST['nb_client'], "text"),
GetSQLValueString($_POST['magazin'], "text"));
 
mysql_select_db($database_newtrip, $newtrip);
$Result1 = mysql_query($insertSQL, $newtrip) or die(mysql_error());
 
$insertGoTo = "code_resultat.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
<!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" />
<title>Document sans titre</title>
</head>
 
<body>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photographe:</td>
<td><input type="text" name="photographe" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Date:</td>
<td><input type="text" name="date" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Carte:</td>
<td><input type="text" name="carte" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Nb_client:</td>
<td><input type="text" name="nb_client" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Magazin:</td>
<td><input type="text" name="magazin" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">&nbsp;</td>
<td><input type="submit" value="Créer code" /></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p>&nbsp;</p>
</body>
</html>
le but de l'opration étant de créer dans la base de donnée autant d'entrée en partant de 000 que de Nb_client que j'aurai indiquer dans le champ Nb_client

pour cela je pense que je vais devoir faire une boucle. et la je bloque depuis 3 jour ou la placer et surtout comment la composer.
2eme probleme la date que me revoie la base de donnée est sous forme (ex: 2012-03-08) alors que je veux obtenir 080312.

3eme probleme (et j'arrete la ...) de la meme facon le BDD me renvois 1 au lieu de 001 pour nb_client.

je suis débutant si quelqu'un pouvais m'aider ...

merci