<!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>Documento sin título</title>
</head>
<body>
<?php
function nombres($prinombre,$segnombre){
$name = $prinombre .' '. $segnombre;
return $name;
}
if(isset($_POST['submitted'])){
if(empty($_POST['$prinombre']) and empty($_POST['$segnombre'])){
print nombre($_POST['prinombre'],$_POST['segnombre']);
}else{
print'<p>malo</p>';
}
}
?>
<form action="p.php" method="post">
<p>Cantidad 1:<input type="text" name="prinombre" size="20" /></p>
<p>Cantidad 2:<input type="text" name="segnombre" size="20" /></p>
<input type="submit" name="submit" value="calcular" />
<input type="hidden" name="submitted" value="true" />
</form>
</body>
</html>
Y ME ARROJA ESTE ERROR:
Fatal error: Call to undefined function nombre() in C:\xampp\htdocs\prueba\p.php on line 17
POR FAVOR NECESITO DE SU AYUDA, YA QUE ME ESTOY INICIANDO EN PHP GRACIAS....