-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagregarLider.php
executable file
·133 lines (106 loc) · 4.26 KB
/
agregarLider.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php require_once('Connections/tecnocomm.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;
}
}
$ide_RsCoti = "-1";
if (isset($_GET['id'])) {
$ide_RsCoti = $_GET['id'];
}
mysql_select_db($database_tecnocomm, $tecnocomm);
$query_RsCoti = sprintf("select * from subcotizacion where idsubcotizacion=%s", GetSQLValueString($ide_RsCoti, "int"));
$RsCoti = mysql_query($query_RsCoti, $tecnocomm) or die(mysql_error());
$row_RsCoti = mysql_fetch_assoc($RsCoti);
$totalRows_RsCoti = mysql_num_rows($RsCoti);
mysql_select_db($database_tecnocomm, $tecnocomm);
$query_RsEmpleados = "SELECT * FROM usuarios WHERE id not in (select id from subcotizacionlider ) ORDER BY nombrereal ASC";
$RsEmpleados = mysql_query($query_RsEmpleados, $tecnocomm) or die(mysql_error());
$row_RsEmpleados = mysql_fetch_assoc($RsEmpleados);
$totalRows_RsEmpleados = mysql_num_rows($RsEmpleados);
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1"))
{
$valor = join(',',$_POST['empleado']);
$pc = split(',',$valor);
$count = count($pc);
foreach ($pc as $id)
{
$updateSQL = sprintf("INSERT INTO subcotizacionlider (idsubcotizacion, idusuario) VALUES(%s, %s)",
GetSQLValueString($_POST['id'], "int"),
GetSQLValueString($id, "int"));
mysql_select_db($database_tecnocomm, $tecnocomm);
$Result1 = mysql_query($updateSQL, $tecnocomm) or die(mysql_error());
}
$updateGoTo = "close.php";
if (isset($_SERVER['QUERY_STRING'])) {
$updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
$updateGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $updateGoTo));
}
?><!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=iso-8859-1" />
<title>Documento sin título</title>
<link href="style2.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Proyecto:<?php echo $row_RsCoti['nombre']; ?>(<?php echo $row_RsCoti['identificador2']; ?>)</h1>
<div id="myform">
<form id="form1" name="form1" method="post" action="<?php echo $editFormAction; ?>">
<div>
<h3>Seleccionar Lider </h3>
<?php if ($totalRows_RsEmpleados > 0) { // Show if recordset not empty ?>
<?php do { ?>
<label>
<input type="checkbox" name="empleado[]" id="empleado[]" value="<?php echo $row_RsEmpleados['id']; ?>" /><?php echo $row_RsEmpleados['nombrereal']; ?> </label>
<?php } while ($row_RsEmpleados = mysql_fetch_assoc($RsEmpleados)); ?>
<?php } // Show if recordset not empty ?>
<?php if ($totalRows_RsEmpleados == 0) { // Show if recordset empty ?>
<label> NO HAY PERSONAL POR AGREGAR </label>
<?php } // Show if recordset empty ?>
<div>
<label>
<input type="submit" name="Submit" value="Aceptar" />
</label>
</div>
</div>
<input type="hidden" name="id" value="<?php echo $_GET['id'];?>" />
<input type="hidden" name="MM_update" value="form1" />
</form>
</div>
</body>
</html>
<?php
mysql_free_result($RsCoti);
mysql_free_result($RsEmpleados);
?>