Table of Contents
vproject_report_name()
Declaration
vproject_report_name( resource inProjectID, int inIndex )
Parameters
Name | Description |
---|---|
inProjectID | Identifier of a Valentina Project. |
inIndex | Index of vReport. |
Description
Returns vReport name for a given index in the vProject.
Return Values
Returns string.
Examples
Example
<?php $project_id = vproject_create( $link, $project_name ); ... $name = vproject_report_name( $project_id, 1 ); print $name; ?>