mira cambie la funcion y quedo asi
Código PHP:
public function fecha($fecha) {
$objmysql = new mysql();
$this->conexion = $objmysql->conectarBD();
$this->fecha = $fecha;
$this->sql = "select fecha from cabecera where fecha = '$this->fecha'";
$this->resultado = mysql_query($this->sql, $this->conexion);
while ($row = mysql_fetch_array($this->resultado)) {
return $row['fecha'];