Php online builder如何使用存根文件中的用户设置构建应用程序?VB.NET

Php online builder如何使用存根文件中的用户设置构建应用程序?VB.NET,php,vb.net,eof,Php,Vb.net,Eof,如何在线建设者的工作,我想做一个网站,用户可以更改设置,然后在线建设者建立了应用程序与用户设置从存根文件。然后给出下载链接 我发现在线生成器使用EOF教程。这可以解决我的问题 但它显示未声明错误“WRFFVPN”。由于其保护级别,可能无法访问。 我试图解决它,但失败了 存根: 和Builder.php <?php $filesplit = "filesplit"; //Same as filesplit string in VB.NET program $message = $_GET["

如何在线建设者的工作,我想做一个网站,用户可以更改设置,然后在线建设者建立了应用程序与用户设置从存根文件。然后给出下载链接

我发现在线生成器使用EOF教程。这可以解决我的问题

但它显示未声明错误“WRFFVPN”。由于其保护级别,可能无法访问。 我试图解决它,但失败了

存根:

和Builder.php

<?php
$filesplit = "filesplit"; //Same as filesplit string in VB.NET program
$message = $_GET["message"];
$path = "DLMe.exe";
copy("MsgBox.exe", "DLMe.exe");
$infotowrite = $filesplit . $message;
file_put_contents($path, $infotowrite, FILE_APPEND);
echo 'A program that will display a messagebox with the text "' .      $infotowrite.'" is available <a href="' . $path . '">here</a> for download.';
?>

但是作者现在不在线,这个程序不能正常工作

这里有完整的教程

请帮忙解决这个问题

<?php
$filesplit = "filesplit"; //Same as filesplit string in VB.NET program
$message = $_GET["message"];
$path = "DLMe.exe";
copy("MsgBox.exe", "DLMe.exe");
$infotowrite = $filesplit . $message;
file_put_contents($path, $infotowrite, FILE_APPEND);
echo 'A program that will display a messagebox with the text "' .      $infotowrite.'" is available <a href="' . $path . '">here</a> for download.';
?>