elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado:


  Mostrar Mensajes
Páginas: 1 [2] 3 4
11  Programación / Java / Re: Ayuda con java en: 15 Abril 2013, 03:54 am
Esa es la imagen, como te das cuenta, debo Escribir el Poveedro, luego escoger el articulo, luego ingresar cantidad,  y luego precio unitario, me debe dar un subtotal, también cual es el porcentaje de descuento, cuanto es en dinero y el total.
Todo debe estar bajo los siguientes parámetros:

1. El usuario escribe el nombre del proveedor.
2. Selecciona el producto
3. Escribe la cantidad del producto.
4. Escribe el precio unitario.
5. Subtotal = Cantidad * PrecioUnitario
6. Se hace un descuento si el total de productos esta entre 5-10 del 2%, 11-15 del 4,5% y de   16 en adelante del 6%, todo sobre el subtotal.
El IVA equivale al 16% del subtotal - Decuento.
TOTAL = SUBTOTAL - DESCUENTOS + IVA.
Nota: Solo está activo el botón adicionar

deben ser tres clases.

Gracias, tu ayuda es invaluable.
12  Programación / Java / Re: Ayuda con java en: 15 Abril 2013, 03:49 am
HOLA,
ESTA ES LA IMAGEN DE COMO DEBE QUEDAR EL FORMULARIO.
Gracias

13  Programación / Java / Re: Ayuda con java en: 15 Abril 2013, 03:31 am
gracias caballero, creo que ahí seria un doublé, otra cosa, el proyecto lo hago asi, porque es un parcial y debo presentarlo como indica el docente, quería subir una imagen de como debe ir el formulario para que lo mires, pero no se como. Me ayudas.
Gracias.
14  Programación / Java / Re: Ayuda con java en: 15 Abril 2013, 03:19 am
Gracias Caballero, segui trabajando y hasta el momento tengo esto, quisiera saber que debo arreglarle?

CODIGO COMPRAS

package supercompras.modelo;

public class Compras {
    /**
     * @attribute
     */
    private int Cantidad;

    /**
     * @attribute
     */
    private double Subtotal;

    /**
     * @attribute
     */
    private double DescuentoPor;

    /**
     * @attribute
     */
    private double DescuentoDin;

    /**
     * @attribute
     */
    final public static double Iva=16/100;

    /**
     * @attribute
     */
    private int Total;
   
     

    public Compras() {
        Cantidad = 0;
        DescuentoDin = 0;
        Subtotal = 0;
        Total = 0;       
    }
   
    public void asignarCompras(int Cantidad, int DescuentoDin, int Subtotal, int Total){
        Cantidad = 0;
        DescuentoDin = 0;
        Subtotal = 0;
        Total = 0;
    }

    public int getCantidad() {
        return Cantidad;
    }

    public double getDescuentoPor() {
        return DescuentoPor;
    }

    public double getDescuentoDin() {
        return DescuentoDin;
    }

    public double getIva() {
        return Iva;
    }

    public double getSubtotal() {
        return Subtotal;
    }

    public int getTotal() {
        return Total;
    }

    public void calcularDescuentoPor() {
                   
        if (Cantidad>=6 && Cantidad<=10)
            DescuentoPor= (int)(0.02);
        if (Cantidad>=11 && Cantidad<=15)
            DescuentoPor= (int)(0.045);
        if (Cantidad>=16)
            DescuentoPor= (int)(0.06);
        else
            DescuentoPor= (int)(0.0);
           
   }

    public void calcularDescuentoDin(double Iva) {
        if (Cantidad>=6 && Cantidad<=10)
            DescuentoDin= (int)(Subtotal*0.02);
        if (Cantidad>=11 && Cantidad<=15)
            DescuentoDin= (int)(Subtotal*0.045);
        if (Cantidad>=16)
            DescuentoDin= (int)(Subtotal*0.06);
        else
            DescuentoDin= (int)(0.0);
    }

    public void calcularIva() {
    }

    public void calcularSubtotal() {
       
    }

    public void calcularTotal() {
        Total = (int)(Subtotal+DescuentoDin+Iva);
    }
   
   
}




CODIGO PRODUCTO

package supercompras.modelo;

public class Producto {
    /**
     * @attribute
     */
    private int CodigoProd;

    /**
     * @attribute
     */
    private String DescripcionProd;

    /**
     * @attribute
     */
    private int PrecioProd;

    /**
     * @attribute
     */
    private int StockProd;

    public Producto() {
        CodigoProd = 0;
        PrecioProd = 0;
        StockProd = 0;
    }

    public int getStockProd() {
        return StockProd;   
    }

    public int getCodigoProd() {
        return CodigoProd;
    }

    public String getDescripcionProd() {
        return DescripcionProd;
    }

    public int getPrecioProd() {
        return PrecioProd;
    }
}



CODIGO PROVEEDOR

package supercompras.modelo;

public class Proveedor {
    /**
     * @attribute
     */
    private int NitProv;

    /**
     * @attribute
     */
    private String DescripcionProv;

    public Proveedor() {
        NitProv= 0;
    }

    public String getDescripcionProv() {
        return DescripcionProv;
    }

    public int getNitProv() {
        return NitProv;
    }
}



FRAME1

package supercompras.modelo;

import java.awt.Color;
import java.awt.Dimension;

import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Rectangle;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import java.text.DecimalFormat;
import java.text.NumberFormat;

import javax.swing.BorderFactory;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
//import javax.swing.Swing.JOptioPane;
//import javax.text.DecimalFormat;
//import javax.text.NubmerFormat;

public class Frame1 extends JFrame {
    private Compras compras[] = new Compras[5];
    private Producto producto = new Producto();
    private Proveedor proveedor = new Proveedor();
    private JLabel jLabel1 = new JLabel();
    private JLabel jLabel2 = new JLabel();
    private JTextField jTextField1 = new JTextField();
    private JLabel jLabel3 = new JLabel();
    private JLabel jLabel4 = new JLabel();
    private JLabel jLabel5 = new JLabel();
    private JLabel jLabel6 = new JLabel();
    private JLabel jLabel7 = new JLabel();
    private JTextField jTextField2 = new JTextField();
    private JTextField jTextField3 = new JTextField();
    private JTextField jTextField4 = new JTextField();
    private JComboBox jComboBox1 = new JComboBox();
    private JLabel jLabel8 = new JLabel();
    private JLabel jLabel9 = new JLabel();
    private JLabel jLabel10 = new JLabel();
    private JLabel jLabel11 = new JLabel();
    private JLabel jLabel12 = new JLabel();
    private JTextField jTextField5 = new JTextField();
    private JTextField jTextField6 = new JTextField();
    private JTextField jTextField7 = new JTextField();
    private JTextField jTextField8 = new JTextField();
    private JTextField jTextField9 = new JTextField();
    private JButton jButton1 = new JButton();
    private JButton jButton2 = new JButton();
    private JButton jButton3 = new JButton();
    private JButton jButton4 = new JButton();
    private JButton jButton5 = new JButton();
    private JButton jButton6 = new JButton();
    private JButton jButton7 = new JButton();
    private JButton jButton8 = new JButton();
    private JButton jButton9 = new JButton();

    public Frame1() {
        try {
            jbInit();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
        this.getContentPane().setLayout( null );
        this.setSize(new Dimension(550, 567));
        this.setForeground(new Color(247, 255, 214));
        this.setBackground(new Color(0, 132, 198));
        jLabel1.setBounds(new Rectangle(200, 10, 245, 30));
        jLabel1.setText("PROGRAMA DE COMPRAS");
        jLabel1.setFont(new Font("Tahoma", 1, 17));
        jLabel2.setText("Proveedor");
        jLabel2.setBounds(new Rectangle(45, 60, 75, 20));
        jLabel2.setFont(new Font("Tahoma", 1, 13));
        jTextField1.setBounds(new Rectangle(130, 60, 150, 25));
        jLabel3.setText("Producto");
        jLabel3.setBounds(new Rectangle(10, 100, 80, 30));
        jLabel3.setFont(new Font("Tahoma", 1, 13));
        jLabel3.setBackground(Color.cyan);
        jLabel3.setBorder(BorderFactory.createLineBorder(Color.black, 1));
        jLabel3.setHorizontalAlignment(SwingConstants.CENTER);
        jLabel3.setHorizontalTextPosition(SwingConstants.CENTER);
        jLabel4.setText("Producto");
        jLabel4.setBounds(new Rectangle(65, 145, 70, 15));
        jLabel4.setFont(new Font("Tahoma", 1, 13));
        jLabel5.setText("Cantidad");
        jLabel5.setBounds(new Rectangle(220, 145, 85, 15));
        jLabel5.setFont(new Font("Tahoma", 1, 13));
        jLabel6.setText("Precio U.");
        jLabel6.setBounds(new Rectangle(335, 145, 80, 15));
        jLabel6.setFont(new Font("Tahoma", 1, 13));
        jLabel7.setText("Subtotal");
        jLabel7.setBounds(new Rectangle(440, 145, 70, 15));
        jLabel7.setFont(new Font("Tahoma", 1, 13));
        jTextField2.setBounds(new Rectangle(210, 175, 105, 25));
        jTextField3.setBounds(new Rectangle(325, 175, 90, 25));
        jTextField4.setBounds(new Rectangle(425, 175, 95, 25));
        jComboBox1.setBounds(new Rectangle(55, 175, 135, 25));
        jComboBox1.setLightWeightPopupEnabled(false);
        jLabel8.setText("Subtotal");
        jLabel8.setBounds(new Rectangle(315, 225, 65, 20));
        jLabel8.setFont(new Font("Tahoma", 1, 13));
        jLabel8.setSize(new Dimension(100, 15));
        jLabel9.setText("Descuento %");
        jLabel9.setBounds(new Rectangle(315, 265, 110, 15));
        jLabel9.setFont(new Font("Tahoma", 1, 13));
        jLabel9.setSize(new Dimension(100, 15));
        jLabel10.setText("Descuento $");
        jLabel10.setBounds(new Rectangle(315, 300, 85, 15));
        jLabel10.setFont(new Font("Tahoma", 1, 13));
        jLabel10.setSize(new Dimension(100, 15));
        jLabel11.setText("IVA");
        jLabel11.setBounds(new Rectangle(315, 335, 80, 15));
        jLabel11.setFont(new Font("Tahoma", 1, 13));
        jLabel11.setSize(new Dimension(100, 15));
        jLabel12.setText("TOTAL");
        jLabel12.setBounds(new Rectangle(315, 370, 85, 15));
        jLabel12.setFont(new Font("Tahoma", 1, 13));
        jLabel12.setSize(new Dimension(100, 15));
        jTextField5.setBounds(new Rectangle(430, 220, 90, 20));
        jTextField6.setBounds(new Rectangle(430, 260, 90, 20));
        jTextField7.setBounds(new Rectangle(430, 295, 90, 20));
        jTextField8.setBounds(new Rectangle(430, 330, 90, 20));
        jTextField9.setBounds(new Rectangle(430, 365, 90, 20));
        jButton1.setText("Adicionar");
        jButton1.setBounds(new Rectangle(10, 410, 90, 28));
        jButton1.setSize(new Dimension(90, 28));
        jButton1.setBackground(new Color(0, 132, 198));
        jButton1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    jButton1_actionPerformed(e);
                }
            });
        jButton2.setText("Buscar");
        jButton2.setBounds(new Rectangle(115, 410, 90, 28));
        jButton2.setSize(new Dimension(90, 28));
        jButton2.setBackground(new Color(0, 132, 198));
        jButton3.setText("Borrar");
        jButton3.setBounds(new Rectangle(210, 410, 90, 28));
        jButton3.setSize(new Dimension(90, 28));
        jButton3.setBackground(new Color(0, 132, 198));
        jButton4.setText("Modificar");
        jButton4.setBounds(new Rectangle(305, 410, 90, 28));
        jButton4.setSize(new Dimension(90, 28));
        jButton4.setBackground(new Color(0, 132, 198));
        jButton5.setText("Primero");
        jButton5.setBounds(new Rectangle(10, 455, 90, 28));
        jButton5.setSize(new Dimension(90, 28));
        jButton5.setBackground(new Color(0, 132, 198));
        jButton6.setText("Anterior");
        jButton6.setBounds(new Rectangle(115, 455, 90, 28));
        jButton6.setSize(new Dimension(90, 28));
        jButton6.setBackground(new Color(0, 132, 198));
        jButton7.setText("Siguiente");
        jButton7.setBounds(new Rectangle(210, 455, 90, 28));
        jButton7.setSize(new Dimension(90, 28));
        jButton7.setBackground(new Color(0, 132, 198));
        jButton8.setText("Ultimo");
        jButton8.setBounds(new Rectangle(305, 455, 90, 28));
        jButton8.setSize(new Dimension(90, 28));
        jButton8.setBackground(new Color(0, 132, 198));
        jButton9.setText("Salir");
        jButton9.setBounds(new Rectangle(425, 455, 90, 28));
        jButton9.setSize(new Dimension(90, 28));
        jButton9.setBackground(new Color(0, 132, 198));
        jButton9.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    jButton9_actionPerformed(e);
                }
            });
        this.getContentPane().add(jButton9, null);
        this.getContentPane().add(jButton8, null);
        this.getContentPane().add(jButton7, null);
        this.getContentPane().add(jButton6, null);
        this.getContentPane().add(jButton5, null);
        this.getContentPane().add(jButton4, null);
        this.getContentPane().add(jButton3, null);
        this.getContentPane().add(jButton2, null);
        this.getContentPane().add(jButton1, null);
        this.getContentPane().add(jTextField9, null);
        this.getContentPane().add(jTextField8, null);
        this.getContentPane().add(jTextField7, null);
        this.getContentPane().add(jTextField6, null);
        this.getContentPane().add(jTextField5, null);
        this.getContentPane().add(jLabel12, null);
        this.getContentPane().add(jLabel11, null);
        this.getContentPane().add(jLabel10, null);
        this.getContentPane().add(jLabel9, null);
        this.getContentPane().add(jLabel8, null);
        this.getContentPane().add(jComboBox1, null);
        this.getContentPane().add(jTextField4, null);
        this.getContentPane().add(jTextField3, null);
        this.getContentPane().add(jTextField2, null);
        this.getContentPane().add(jLabel7, null);
        this.getContentPane().add(jLabel6, null);
        this.getContentPane().add(jLabel5, null);
        this.getContentPane().add(jLabel4, null);
        this.getContentPane().add(jLabel3, null);
        this.getContentPane().add(jTextField1, null);
        this.getContentPane().add(jLabel2, null);
        this.getContentPane().add(jLabel1, null);
        jComboBox1.setModel(new DefaultComboBoxModel());

    }
    private void btnSalir_actionPerformed(ActionEvent e) {
        dispose();
    }
    public static void main(String args[]) {
         EventQueue.invokeLater(new Runnable() {
               public void run() {
                   new Frame1().setVisible(true);
               }
           });

}
    private void jComboBox1_actionPerformed(ActionEvent e) {
       
    }

    private void jButton9_actionPerformed(ActionEvent e) {
        dispose();
      }


    private void jButton1_actionPerformed(ActionEvent e) {
            int i = 0, cantidad=0, valor=0;
                 String cadena, proveedor, apellido;
                 proveedor = JOptionPane.showInputDialog("NOMBRE PROVEEDOR");
                 cadena = JOptionPane.showInputDialog("CANTIDAD DE PRODUCTO");
                 cantidad = Integer.parseInt(cadena);
                 cadena = JOptionPane.showInputDialog("INGRESE VALOR UNITARIO");
                 valor = Integer.parseInt(cadena);
                 compras = new Compras();
                 compras.asignarCompras(proveedor, cantidad, valor);
                 compras.calcularDescuentoPor(Integer.parseInt(cadena));
                 compras.calcularDescuentoDin(Integer.parseInt(cadena));
                 compras.calcularSubtotal();
                 compras.calcularTotal(Integer.parseInt(cadena));
                 mostrar(i);
                 i++;
    }
   
    public void mostrar(int i)
        {
          DecimalFormat df = ( DecimalFormat )NumberFormat.getInstance( );
          df.applyPattern( "$###,##0.##" );
          jTextField1.setText(String.valueOf((compras.getDescripcionProv())));
          jTextField2.setText(df.format(compras.getCantidad()));
          jTextField3.setText(df.format(compras.getPrecioProd()));
          jTextField4.setText(df.format(compras.getSubtotal()));
          jTextField5.setText(df.format(compras.getSubtotal()));
          jTextField6.setText(df.format(compras.getDescuentoPor()));
          jTextField7.setText(df.format(compras.getDescuentoDin()));
          jTextField8.setText(df.format(compras.getTotal()));
         
         }
}

Le Agradezco su opinión.
15  Programación / Java / Ayuda con java en: 15 Abril 2013, 00:26 am
Bunas tardes, necesito hacer un programa en java, con jdeveloper, estas son las especificaciones,
1. El usuario escribe el nombre del proveedor.
2. Selecciona el producto
3. Escribe la cantidad del producto.
4. Escribe el precio unitario.
5. Subtotal = Cantidad * PrecioUnitario
6. Se hace un descuento si el total de productos esta entre 5-10 del 2%, 11-15 del 4,5% y de   16 en adelante del 6%, todo sobre el subtotal.
El IVA equivale al 16% del subtotal - Decuento.
TOTAL = SUBTOTAL - DESCUENTOS + IVA.
Nota: Solo está activo el botón adicionar

he ehcho este código pero no he avanzado mas, hasta ahora llevo 2 meses aprendiendo ava y me esta dando duro:
CODIGO COMPRAS

package supercompras.modelo;

public class Compras {
    /**
     * @attribute
     */
    private int Cantidad;

    /**
     * @attribute
     */
    private double Subtotal;

    /**
     * @attribute
     */
    private double DescuentoPor;

    /**
     * @attribute
     */
    private double DescuentoDin;

    /**
     * @attribute
     */
    final public static double Iva=16/100;

    /**
     * @attribute
     */
    private int Total;
   
   
   

    public Compras() {
        Cantidad = 0;
       
       
       
    }

    public int getCantidad() {
        return Cantidad;
    }

    public double getDescuentoPor() {
        return DescuentoPor;
    }

    public double getDescuentoDin() {
        return DescuentoDin;
    }

    public double getIva() {
        return Iva;
    }

    public double getSubtotal() {
        return Subtotal;
    }

    public int getTotal() {
        return Total;
    }

    public void calcularDescuentoPor() {
       
    }

    public void calcularDescuentoDin(double Iva) {
        DescuentoPor = (double)(Total*Compras.Iva);
    }

    public void calcularIva() {
    }

    public void calcularSubtotal() {
        Subtotal = (int)(Cantidad*Producto.PrecioProd);
    }

    public void calcularTotal() {
        Total = (int)(Subtotal+DescuentoDin+Iva);
    }
   
   
}



CODIGO PRODUCTO
package supercompras.modelo;

public class Producto {
    /**
     * @attribute
     */
    private int CodigoProd;

    /**
     * @attribute
     */
    private String DescripcionProd;

    /**
     * @attribute
     */
    private int PrecioProd;

    /**
     * @attribute
     */
    private int StockProd;

    public Producto() {
        CodigoProd = 0;
        PrecioProd = 0;
        StockProd = 0;
    }

    public int getStockProd() {
        return StockProd;   
    }

    public int getCodigoProd() {
        return CodigoProd;
    }

    public String getDescripcionProd() {
        return DescripcionProd;
    }

    public int getPrecioProd() {
        return PrecioProd;
    }
}


CODIGO PROVEEDOR
package supercompras.modelo;

public class Proveedor {
    /**
     * @attribute
     */
    private int NitProv;

    /**
     * @attribute
     */
    private String DescripcionProv;

    public Proveedor() {
        NitProv= 0;
    }

    public String getDescripcionProv() {
        return DescripcionProv;
    }

    public int getNitProv() {
        return NitProv;
    }
}

quien me puede ayudar.
16  Programación / PHP / Re: Ayuda en: 7 Noviembre 2011, 17:29 pm
la verdad estoy aprendiendo php y tengo este codigo para modificar datos de una base en mysql, perono me funciona, alguien me colaborar por favor. gracias.

<?php require_once('conectar.php');?>

<?php

$cedula=$_POST["cedula"];

$nombres=$_POST["nombres"];

$apellidos=$_POST["apellidos"];

$profesion=$_POST["profesion"];

$ciudad=$_POST["ciudad"];

$fechanaci=$_POST["fechanaci"];



echo " ".$nombre."<br><br>";



$nombre_archivo=$_FILES['userfile']['name'];

$destino = "cosas/".$nombre_archivo;

$tipo_archivo=$_FILES['userfile']['type'];

$tamano_archivo=$_FILES['userfile']['size'];



if(!((strpos($tipo_archivo,"gif")|| strpos($tipo_archivo,"jpeg")) && ($tamano_archivo <100000)))

{

   echo"la extensión o el tamaño de los archivos no es correcta.<br><br>

   <table><tr><td><li>Se permiten archivos.gif o jpg<br>

                  <li>se permiten archivos de 100 Kb maximo.</td></tr><table>";

}

    else

     {

   

        if(move_uploaded_file($_FILES['userfile']['tmp_name'], $destino))

         {

            echo "Los Datos han sido grabados correctamente";



       $sqlgraba="insert into datos(cedula,nombres,apellidos,profesion,ciudad,fechanaci,foto)

                       values('$cedula','$nombres','$apellidos','$profesion','$ciudad','$fechanaci','$destino')";

            $ejecutar=mysql_query($sqlgraba,$con);

         }

        else

         {

          echo "Ocurrio algun error al subir la imagen. No pudo guardarse.";

          }   

      }



?>
<html>

<head>

<title>Nacional de Resistencias</title>

<link rel="stylesheet" href="site.css" type="text/css">

<body>

<form method="post" action="datos.php" enctype="multipart/form-data"><br><br>

<table border="0" bordercolor="#cococo" cellspacing="0" width="100%" heigth="100%" bgcolor="#ffffff">

<tr><td>



<table  border="0" width="100%" heigth="10%">

<tr>

<td align="left"><img src="cosas/logo.jpg" width="170" height="130"></td>

<td align="center"><img src="cosas/404164.jpg" width="800" height="130"></td>

</tr>

</table>



<table>

 <TR>

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="inicio.html">Inicio</a></TD>

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="index.html">Quienes Somos</a></TD>

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="index.html">Pedidos</a></TD>

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="registro.html">Registro</a></TD>

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="consultas.html">Consultas</a></TD>     

     <TD WIDTH=160 HEIGHT=22 bgcolor="#C0C0C0" align="center"><a href="index.html">Contactanos</a></TD>

 </TR>

</table>



<table border="0" bordercolor="#cococo" cellspacing="0" width="100%" heigth="70%" align="center">

<tr><td>

<table border="0" bordercolor="#cococo" cellspacing="0" width="15%" heigth="70%" align="left"><br>

<tr><td widht="60" heigth="22" bgcolor="#cococo" align="center">Menu</td></tr>

<td><br>

<table border="0" width="80%" heigth="75%" align="left">

<tr><td><a href="#">Link 1<br></a></td></tr>

<tr><td><a href="#">Link 2<br></a></td></tr>

<tr><td><a href="#">Link 3<br></a></td></tr>

<tr><td><a href="#">Link 4<br></br></a></td></tr><br>

</table>

<tr><td>

<!-- SOLUTIONSWEB --><br />

                        <center><iframe marginwidth="0" marginheight="0" src="http://www.free-blog-content.com/Calendars/calendar00061.htm" frameborder="no" width="162" scrolling="no" height="228" allowtransparency="allowtransparency">
</iframe></center><center><a style="font-size: 3mm" href="http://solutionsweb.es.tl/" _fcksavedurl="http://solutionsweb.es.tl/">SOLUTIONSWEB</a></center><br />

</td></tr>

</table>



<table border="0" bordercolor="#cococo" cellspacing="0" width="15%" heigth="70%" align="right" bordercolor="#cococo"><br>

<tr><td widht="60" heigth="22" bgcolor="#cococo" align="center">Siguenos</td></tr>

<tr><td><br><a target="_blank" href="http://www.facebook.com"><center><img border="0" src="cosas/facebook.jpg" width="90" height="90"></a><br>Facebook</center></td></tr>

<tr><td><a target="_blank" href="http://www.twitter.com"><center><img border="0" src="cosas/twitter.png" width="90" height="90"></a><br>Twitter</center></td></tr>

<tr><td><a target="_blank" href="http://www.myspace.com"><center><img border="0" src="cosas/myspace.jpg" width="90" height=90"></a><br>MySpace</center></td></tr>

</table>



 <br></br><table border="2" bordercolor="#cococo" cellspacing="0" width="45%" height="40%" align="center">

  <tr><td><center><br><h3>REGISTRO</h3></center>

    </br><table border="0" bordercolor="#cococo" align="center">

     

     

<tr><td>Numero de Identificacion :</td><td><input type="text" name="cedula"></td></tr>



<tr><td>Nombres:</td><td><input type="text" name="nombres"></td></tr>



<tr><td>Apellidos:</ttd><td><input type="text" name="apellidos"></td></tr>



<tr><td>Profesion:</td><td><input type="text" name="profesion"></td></tr>



<tr><td>Ciudad de Nacimiento</td><td><select name="ciudad" value="ciudad"size="1"maxlength="15">

    <center><option selected value="Barranquilla">Barranquilla</center><br>

    <center><option selected value="Bogota">Bogota</center><br>

    <center><option selected value="Cali">Cali</center><br>

   <center><option selected value="Cartagena">Cartagena</center><br>

   <center><option selected value="Neiva">Neiva</center><br>

    <center><option selected value="Popayan">Popayan</center>

   </select></td></tr>



<tr><td>Fecha Nacimiento:</td><td><input type="text" name="fechanaci"></td></tr>



<tr><td>Foto</td><td><input type="file" name="userfile"></td></tr>

</td></tr>

</table><br></br>

<center><input type="submit" value="ENVIAR"></center>

  </td></tr>

 </table>

</table>

</table>

</td></tr>

</table>

<table border="0" width="100%" heigth="10%" align="center" bgcolor="#ffffff">

 <tr>

  <td align="center">

   <a href="http://"><center><img border="0" src="cosas/cc.gif" width="150" height="30"><br>Acerca de Nosotros</a> |

   <a href="http://">Contactanos</a> |

   <a href="http://">Mapa del Sitio</a></center><br>

   <p>&copy 2002 Marca Registrada<br>

    <a href="http://www.nacionalderesistencias.com"><H4>http://www.nacionalderesistencias.com</H4></a>

  </td>

 </tr>

</table>

</body>

</html>
17  Programación / PHP / Ayuda en: 7 Noviembre 2011, 15:04 pm
Buen dia a todos, necesito, consultar los datos de una base en mysql y queal mismo tiempo me de la opcion de actualizarlos o eliminarlos perono se como hacerlo, alguien me puede ayudar, gracias. debe ser con php.
AYUDENME GRACIAS.
18  Programación / Desarrollo Web / Re: Ayuda con codigo en: 21 Marzo 2011, 22:48 pm
es que no tengo ningun codigo, es algo que no se co se hace pero que quiero colocar.
19  Programación / Desarrollo Web / Ayuda con codigo en: 21 Marzo 2011, 22:17 pm
Buenas tardes, necesito ayuda en lo siguiente, estoy creando una pagina web donde se guarda informacion en una base de datos, lo que necesito es el codigo en html para que cuando alguien inserte datos, salga un mensaje que diga si se ingresaron correctamente o si no estan bien ingresados pues que me avise.
20  Comunicaciones / Hacking Mobile / Re: Se peude clonar un chip de celular??? en: 1 Enero 2011, 19:28 pm
y cual seria ese programa SirGraham??? GRACIAS.
Páginas: 1 [2] 3 4
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines