zero-perfoliate
zero-perfoliate

Author Topic: [HELP] How to create the file install.php  (Read 326 times)

Offline spaxy

  • New PHP Members
  • Posts: 1
  • Karma: +0/-0
[HELP] How to create the file install.php
« on: February 08, 2009, 07:28:18 AM »


   
Help me create a file install.php
   
I do not know how

Just started studying php

   
This code file /inc/conf.php
Code: [Select]
<?php
define
("DIRECTORY""");

$statistical_database "";
$statistical_database_host "";
$statistical_database_login "";
$statistical_database_password "";

define("statistical_database_host""");
define("statistical_database""");
define("statistical_database_login""");
define("statistical_database_password""");

$database "";
$database_host "";
$database_login "";
$database_password "";

define("database_host""");
define("database""");
define("database_login""");
define("database_password""");
?>


Offline PhPHelper

  • http://Digiscapers.com
  • Full Member
  • PHP Problem Solvers
  • ****
  • Posts: 179
  • Karma: +50/-0
    • Bad Apple Mail
Re: [HELP] How to create the file install.php
« Reply #1 on: February 10, 2009, 05:03:55 PM »
do make the install file by looking at the image provided you need to create a form to fill in that will pass the data, unless you are making an installer that will get used often it will be easier for you to just hand code the values into the file directly.

 

zero-perfoliate