Código PHP:
<?
class boton
{
var $opc=1;
function boton()
{
if( $ingreso ){ //esta parte no se como llamarla dentro de una clase o funcion
switch( $ingreso ){ // igual
case "Ingresar" : $this->opc = 2; break;
}
}
if( $this->opc == 1 ) echo"<input type = submit name = ingreso value='Ingresar'";
if( $this->opc == 2 ) echo"<input type = submit name = ingreso value='Guardar'";
}
}
//prueba.php
?>
<form method=POST action="<?php echo $PHP_SELF; ?>">
<input type=text name=campo1 >
<p> </p>
<? $obj = new boton(); ?>
</form>
<?
if ($ingreso == "Guardar"){
echo " se ha guardado el registro";
}
if ($ingreso == "Ingresar"){
echo " Va ha insertar un registro";
}
?>