PHP Sample to generate a license key

To generate a license key from PHP:

<html> <head> <title>QLM PHP Test</title> </head> <body> <?php echo '<p>Generated Trial License Key:</p>'; $URL = "https://qlm3.net/qlmdemo/qlmLicenseServer/qlmservice.asmx/GetActivationKeyWithExpiryDate?is_productid=1&is_majorversion=1&is_minorversion=0&is_expduration=30"; $data = file_get_contents($URL); echo $data ?> </body> </html>

Last updated