Quote:
Originally Posted by pelican
seems like a nice hack but it is too technical. if there are some sample code for possible implementation it will be better.
|
download a package and look at the examples folder
okay modify a server to create own functions is not so easy, that is true
but connects to a server to get some informations is realy easy
only with 2 lines you can make a login of a user, or get last X threads from a forum
1.line (connect)
$connect= new SoapClient(SERVERURL);
2.line ( get data )
$threads=$connect->getLastThreads(X);
done, you have now an array "threads" which have all needed informations to display last X threads
i dont think that this solution is too technical