Hi,
I have an object with differents method in java.
One is to print the content of string.
But i don t want to return the result to the php script and print it. I want to print it directly in the java method.but it doesnt work.
This is my method.(simple)
public void display() {
System.out.println (this.content);
}
My php script:
...
$c->display();
...
Is it possible or i have to return the result and print it in php script ?
Thanx