2 bestanden soort van samenvoegen
Ik heb n vraagje, ik heb net 2 dingen in elkaar geflansd... en nu had ik de vraag als het ene bestandje werkt en goed is uitgevoerd op de database hoe zorg ik ervoor dat het andere bestandje dan zijn code uitvoerd?
Hier de 2 bestandjes:
deel1:
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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<p>
<?
$mysql_host = "localhost";
$mysql_gebruikersnaam = "geheim";
$mysql_wachtwoord = "geheim";
$mysql_database = "nieuws";
mysql_connect("$mysql_host", "$mysql_gebruikersnaam", "$mysql_wachtwoord") or die (mysql_error());
mysql_select_db("$mysql_database") or die (mysql_error());
?>
</p>
<form id="form1" name="form1" method="post" action="">
<p>Titel:<br />
<textarea name="textarea2"><? $query = "SELECT * FROM nieuws";
$info =mysql_query($query) or die ("Kon de gegevens niet lezen");
print "titel";
?>
</textarea>
<br />
Bericht:
<br />
<textarea name="textarea" cols="150" rows="20" value="hoi" ><? $query = "SELECT * FROM nieuws";
$info =mysql_query($query) or die ("Kon de gegevens niet lezen");
print "bericht";
?> </textarea>
</p>
</form>
<p> </p>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<p>
<?
$mysql_host = "localhost";
$mysql_gebruikersnaam = "geheim";
$mysql_wachtwoord = "geheim";
$mysql_database = "nieuws";
mysql_connect("$mysql_host", "$mysql_gebruikersnaam", "$mysql_wachtwoord") or die (mysql_error());
mysql_select_db("$mysql_database") or die (mysql_error());
?>
</p>
<form id="form1" name="form1" method="post" action="">
<p>Titel:<br />
<textarea name="textarea2"><? $query = "SELECT * FROM nieuws";
$info =mysql_query($query) or die ("Kon de gegevens niet lezen");
print "titel";
?>
</textarea>
<br />
Bericht:
<br />
<textarea name="textarea" cols="150" rows="20" value="hoi" ><? $query = "SELECT * FROM nieuws";
$info =mysql_query($query) or die ("Kon de gegevens niet lezen");
print "bericht";
?> </textarea>
</p>
</form>
<p> </p>
</body>
</html>
deel2:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?
$mysql_host = "localhost";
$mysql_gebruikersnaam = "geheim";
$mysql_wachtwoord = "geheim";
$mysql_database = "nieuws";
mysql_connect("$mysql_host", "$mysql_gebruikersnaam", "$mysql_wachtwoord") or die (mysql_error());
mysql_select_db("$mysql_database") or die (mysql_error());
$query = "DELETE FROM nieuws WHERE id = 2";
mysql_query($query) or die ("Lezen gegevens mislukt.");
?>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?
$mysql_host = "localhost";
$mysql_gebruikersnaam = "geheim";
$mysql_wachtwoord = "geheim";
$mysql_database = "nieuws";
mysql_connect("$mysql_host", "$mysql_gebruikersnaam", "$mysql_wachtwoord") or die (mysql_error());
mysql_select_db("$mysql_database") or die (mysql_error());
$query = "DELETE FROM nieuws WHERE id = 2";
mysql_query($query) or die ("Lezen gegevens mislukt.");
?>
</body>
</html>
ojaa... :D
ojaa... :D