i have a question?
i have 3 files of PHP and the codes are as follows.

variables.inc
<?php
   $host     = $_POST["host"];
   $username = $_POST["user"];
   $password = $_POST["password"];
   $dbname   = $_POST["dbname"];
   $tblname  = $_POST["table"];
   $field    = $_POST["field"];
   $value    = $_POST["value"];
?>

createDB.php
   <?php
      include ('createtbl.php');
 ?>

createtbl.php
<?php
include ('variable.inc');
?>


How come that the text inside the variable.inc will be shown in createtbl.php?



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to