OK, I am a newbie to PHP. I have been working on a website using WordPress and need to run a small script to generate registration codes for a website. The customer enters a number generated by the downloaded software onto this webpage:
http://www.blindbidpro.com/register/
here is an example of a computer code: BC79-2AAE-9628-8892
and a registration number is supposed to be generated. The problem is the provider of the software has an ASP solution, but my server doesn't support ASP pages. I am trying to change the ASP code into PHP, but I have no experience in either of these languages. Any help would be great! Here is a link to the software providers explanation of what needs to happen:
http://www.LockXLS.com/help/index.asp?topic=ht_keygen
and here is the ASP code I already have:
<%@ Language="JavaScript" %>
<html>
<head>
<style type="text/css">
.myText {font-family:Verdana; font-size:10px;}
</style>
</head>
<body>
<%
var sComputerCode = String(Request.Form("sCC"));
var sActivationCode = "";
var commandLine = "http://www.blindbidpro.com/validate/KeyGen.exe 80311927548D0E53 " + sComputerCode;
var WshShell = Server.CreateObject("WScript.Shell");
var oExec = WshShell.Exec(commandLine);
while( !oExec.StdOut.AtEndOfStream )
{
sActivationCode += oExec.StdOut.Read(1);
}
WshShell = null;
%>
<div class="myText" style="width:100%;" align="center">
Thank you for generating Activation Code.
<div style="height:30px;"></div>
<table class="myText" style="border:solid 1px gray;">
<tr>
<td>
Computer Code </td><td><b> <% Response.Write( sComputerCode ); %></b></td>
</tr>
<tr>
<td>
Activation Code </td><td><b> <% Response.Write( sActivationCode ); %></b></td>
</tr>
</table>
</div>
</body>
</html>