All pastes #2068415 Raw Edit

Stuff

public php v1 · immutable
#2068415 ·published 2011-05-24 14:20 UTC
rendered paste body
<?php	require('/home/juanx2/public_html/intranet/Configuracion/conexion.php');	require('/home/juanx2/public_html/intranet/Configuracion/session_administracion.php');	require('/home/juanx2/public_html/intranet/Configuracion/funciones.php');	$roles=array("ADMINISTRADOR","ADMINISTRACION");	validar_roles($_SESSION['rol'],$roles);		$consulta = "INSERT INTO servicios (codigo, servicio, precio, activo) VALUES ('".$_POST['codigo']."', '".$_POST['servicio']."', '".$_POST['precio']."', '".$_POST['activo']."')";			$resultado = mysql_query($consulta);	if(!$resultado)	{		header("Location: editar_servicio.php?codigo=".$_POST['codigo']."&msg=Error%20al%20actualizar%20los%20datos");	}	else	{		?>                    <script type="text/javascript">                       alert("insertado con exito");                       window.location = "/listado_servicios.php";                   </script>                 <?php		//header("Location: listado_servicios.php");	}?>