Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function crearNuevoRol($nombre,$descripcion){
  2.         include('conexion.php');
  3.         $consult="INSERT INTO rol  ( nombre , descripcion )VALUES ('".$nombre."','".$descripcion."')";
  4.         $resul = mysql_query($consult,$link);
  5.        
  6.         return $resul;
  7.    
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement