Tabelleb in install
Als er een install bij het script zit lukt het wel.
Nu heb ik een stukje install php scriptje maar ik wil er andere tabellen in hebben maar het lukt me niet.
Dit is de install.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
include("config.php");
if(isset($_POST['submit'])){
$tabel = "CREATE TABLE script (
id int(10) auto_increment not null PRIMARY KEY,
auteur varchar(30) not null,
scriptnaam varchar(30) not null,
uitleg text not null,
source text not null
);";
$tabel2 = "CREATE TABLE script_reactie (
id int(10) auto_increment not null PRIMARY KEY,
scriptid int(10) not null,
naam varchar(30) not null,
bericht text not null
);";
mysql_query($tabel) or die("Foutje");
mysql_query($tabel2) or die("Foutje");
echo "<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;\" bordercolor=\"#000000\">";
echo "<tr>";
echo "<td bgcolor=\"#EEEEEE\">Bloeper's Scriptsysteem</td>";
echo "</tr>";
echo "<tr>";
echo "<td>De tabellen zijn succesvol toegevoegt";
echo "</td>";
echo "</tr>";
echo "</table>";
}else{
?>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse:collapse;" bordercolor="#000000">
<tr>
<td bgcolor="#EEEEEE">Bloeper's Scriptsysteem</td>
</tr>
<tr>
<td>
Als je de config.php goed hebt ingevult klik dan op Maak aan!<br>
<form method="post" action="<?php echo $PHP_SELF; ?>">
<input type="submit" name="submit" value="Maak aan!">
</form>
</td>
</tr>
</table>
<?php
}
?>
include("config.php");
if(isset($_POST['submit'])){
$tabel = "CREATE TABLE script (
id int(10) auto_increment not null PRIMARY KEY,
auteur varchar(30) not null,
scriptnaam varchar(30) not null,
uitleg text not null,
source text not null
);";
$tabel2 = "CREATE TABLE script_reactie (
id int(10) auto_increment not null PRIMARY KEY,
scriptid int(10) not null,
naam varchar(30) not null,
bericht text not null
);";
mysql_query($tabel) or die("Foutje");
mysql_query($tabel2) or die("Foutje");
echo "<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:collapse;\" bordercolor=\"#000000\">";
echo "<tr>";
echo "<td bgcolor=\"#EEEEEE\">Bloeper's Scriptsysteem</td>";
echo "</tr>";
echo "<tr>";
echo "<td>De tabellen zijn succesvol toegevoegt";
echo "</td>";
echo "</tr>";
echo "</table>";
}else{
?>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse:collapse;" bordercolor="#000000">
<tr>
<td bgcolor="#EEEEEE">Bloeper's Scriptsysteem</td>
</tr>
<tr>
<td>
Als je de config.php goed hebt ingevult klik dan op Maak aan!<br>
<form method="post" action="<?php echo $PHP_SELF; ?>">
<input type="submit" name="submit" value="Maak aan!">
</form>
</td>
</tr>
</table>
<?php
}
?>
En nu wil ik deze tabellen erin hebben:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
CREATE TABLE `partneradmin` (
`id` mediumint(9) NOT NULL auto_increment,
`username` varchar(50) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
CREATE TABLE `partners` (
`id` mediumint(9) NOT NULL auto_increment,
`naam` varchar(50) NOT NULL default '',
`email` varchar(50) NOT NULL default '',
`sitenaam` varchar(50) NOT NULL default '',
`siteurl` varchar(100) NOT NULL default '',
`inhits` int(4) NOT NULL default '0',
`uithits` int(4) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
CREATE TABLE `uniekehits` (
`ip` varchar(40) NOT NULL default '',
`dag` varchar(40) NOT NULL default '',
`id` char(3) NOT NULL default '',
`status` char(3) NOT NULL default ''
) ENGINE=MyISAM;
INSERT INTO `partneradmin`
( `id` , `username` , `password` )
VALUES ('', 'admin', 'admin');
`id` mediumint(9) NOT NULL auto_increment,
`username` varchar(50) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
CREATE TABLE `partners` (
`id` mediumint(9) NOT NULL auto_increment,
`naam` varchar(50) NOT NULL default '',
`email` varchar(50) NOT NULL default '',
`sitenaam` varchar(50) NOT NULL default '',
`siteurl` varchar(100) NOT NULL default '',
`inhits` int(4) NOT NULL default '0',
`uithits` int(4) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
CREATE TABLE `uniekehits` (
`ip` varchar(40) NOT NULL default '',
`dag` varchar(40) NOT NULL default '',
`id` char(3) NOT NULL default '',
`status` char(3) NOT NULL default ''
) ENGINE=MyISAM;
INSERT INTO `partneradmin`
( `id` , `username` , `password` )
VALUES ('', 'admin', 'admin');
Wie o wie kan mij helpen?
Miss zou het handig zijn als ik een tabledump script had.
Dat ik voor elk script zonder install kan geruiken.
Zodat ik alleen de tabellen kan invoeren.
Dan wordt tabledump.php bijvoorbeeld:
Welke database:
______________
|_____________|
Welkemap staat het script:
______________
|_____________|bv: website.nl of website.nl/map/
Connectie:
______________
|_____________|bv: config.php of ../config.php of ../map/config.php
Tabellen invoeren:
______________
| |
| |
| |
| |
|_____________|
______________
|Invoeren |
Nou:)
Ik weet niet welke gegevens die dan zoal nodig heeft maar dit zou handig zijn.
Gewijzigd op 01/01/1970 01:00:00 door Ferdi R
Er zijn nog geen reacties op dit bericht.