English 中文(简体)
“ 复制” a php- file, 包括 POST 变量
原标题:"Copy" a php-file and include the POST-variable
  • 时间:2012-05-21 11:11:27
  •  标签:
  • php

我制作了一个PHP应用程序, 包含一些实时功能等。 我制作了一个PHP脚本, 内容如下:

  • Based on a form input, it creates a folder with the input name, eg. JOHN. (called $dir)
  • It then creates a MySQL database table with the name the prefix_JOHN.
  • It then copies and moves the system templates files to the JOHN-folder.

那么我的问题是—— 我需要脚本来创建两个包含特定内容的文件—— 但是窗体输入中调用的变量必须包含在内, 这样它就可以从数据库中的具体( 这里) JOHN 表格中调用 。

我只是想复制 - 但需要手工编辑文件。 因为将会创建无限的表格, 我不想这样做 。 : :

然后我试图让脚本创建一个新文件。 工作过 - 除了它不能包括 PHP 变量或标签 - 这当然有道理, 但现在我卡住了 。 () ()

有人能帮忙吗?

最佳回答

Nanne 回答是前进的方向。 但如果你真的对此感到好奇, 当然你可以写代码来编辑脚本 。

  1. Copy the master PHP file to user specific PHP file
  2. Get the contents of the newly created file
  3. 将所有变量替换为 str_replace 。 也许类似 :

    $conents = str_replace( $name = "NAME", $ = " John", $ ententes)

  4. 将内容保存回文件 。

问题回答
  • save all the instance-specific data to a central database.
  • Have all your instances query that database for their specific variables like databasename, root folder etc




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签