|
QuickStart
Brief introduction to using php-ssrs
Featured InitialisationPHP-SSRS requires a few parameters on initialisation, the base URL of your reporting services installation (i.e. http://server/reportserver/), plus the username and password of a Reporting Services user with access to service and execution methods. Examplerequire('library/SSRS/Report.php');
$ssrs = new SSRS_Report('http://server/reportserver/', array('username' => 'thomas', 'password' => 'secureme'));
$ssrs->listChildren('/Report Folder');
| |
► Sign in to add a comment