This topic is locked

Display Build Number in Footer

3/13/2025 4:01:29 PM
PHPRunner Tips and Tricks
S
safesurf author

It took me some time but finally found out how to display the PHPRunner build number in the footer. Hope this helps someone trying to do the same thing.

<?php echo "Version 11.0 Build " . $wizardBuildKey = ProjectSettings::getProjectValue('wizardBuild'); ?>

C
Chris Whitehead 3/14/2025

That's really handy, thanks.