|    
			
				27/05/2002, 13:26
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: noviembre-2001 Ubicación: Esquina Libertad 
						Mensajes: 343
					 Antigüedad: 23 años, 11 meses Puntos: 0 |  | 
  |  Re: Guardar datos en la base  
  y aca va guardaUsuarios.cfm.....
 
 <html>
 <head>
 <title>Untitled Document</title>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 </head>
 
 <body bgcolor="#FFFFFF" text="#000000">
 <cfquery name="insertar" datasource="Usuariosdb.dbf" DBTYPE="ODBC">
 INSERT INTO usuarios (Nombre, Pasword) VALUES ('#form.Nombre#', '#form.Password#')
 </cfquery>
 
 </body>
 </html>
     |