Tema: Php + Java
Ver Mensaje Individual
  #14 (permalink)  
Antiguo 03/06/2008, 12:28
Avatar de sck1983
sck1983
 
Fecha de Ingreso: noviembre-2005
Ubicación: Sevilla
Mensajes: 110
Antigüedad: 18 años, 5 meses
Puntos: 2
Respuesta: Php + Java

he creado un archivo php con este codigo

Código:
<?php


$obj = new Java("hello");
// Call the "sayHello()" method
$output = $obj->SayHello();
echo $output.'  this text in PHP<br />'; // Displays (so this comes from the class!)


?>
y me da este error

Fatal error: Class 'Java' not found in C:\xampp\htdocs\java.php on line 4

¿que puede ocurrir?