<?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));
}
$colname_codage = "+1";
if (isset($_GET['nb_client'])) {
$colname_codage = $_GET['nb_client'];
}
mysql_select_db($database_newtrip, $newtrip);
$query_codage = sprintf("SELECT nb_client FROM Code_client WHERE nb_client < %s", GetSQLValueString($colname_codage, "text"));
$codage = mysql_query($query_codage, $newtrip) or die(mysql_error());
$row_codage = mysql_fetch_assoc($codage);
$totalRows_codage = mysql_num_rows($codage);
?>
<!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">
<?php do { ?>
<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"> </td>
<td><input type="submit" value="Créer code" /></td>
</tr>
</table>
<?php } while ($row_codage = mysql_fetch_assoc($codage)); ?>
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
</body>
</html>
<?php
mysql_free_result($codage);
?>