Código:
<!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=utf-8" /> <title>Usando privilegios </title> </head> <body> <?php if( array_key_exists('enviar', $_POST)){ $nombre = $_POST['nombre']; $apellido = $_POST['apellido']; class romel{ private $nombre; private $apellido; public function nombre_y_apellido($nombre,$apellido) { $this->nombre = $nombre; $this->apellido = $apellido; } public function mostrar() { return "Mi nombre es: ".$this->nombre." Y mi Apellido es: ". $this->apellido; } }// finaliza la class $inst = new romel(); $inst-> nombre_y_apellido($nombre,$apellido); $inst-> mostrar(); }// finaliza if(array_kay_exists('enviar',$_POST)) ?> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <label for="nombre">Nombre: </label> <input name="nombre" /> <label for="apellido">Apellido: </label> <input name="apellido" /> <input type="submit" value="enviar" /> </form> </body> </html>
Código:
<!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=utf-8" /> <title>Mostrando el valor de uno</title> </head> <body> <?php class numeros{ public $uno; public function mostrar(){ return $this->uno; } }// finaliza la class $inst = new numeros(); $inst->uno = 1; // Establezco el parámetro publico $uno con un valor 1 $inst-> mostrar(); ?> </body> </html>