index_int.php (bis zum Ende des Fehlers):
[PHP]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Lebenslauf</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="../css/mm_finance.css" type="text/css" />
<style type="text/css">
@import url("css/mm_finance.css");
</style>
<script language="javascript"></script>
</head>
<?php include ("dependence/include1.php");?>
<body bgcolor="#cccccc">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#7B979A">
<td width="400" rowspan="2" colspan="3" nowrap><img src="../pictures/mm_finance_photo.jpg" alt="Kopfzeilenbild" width="400" height="117" border="0" /></td>
<td width="360" height="56" nowrap colspan="3" id="logo" valign="bottom" align="center"><?php echo $row_rs_index['Name']; ?></td>
<td width="100%"> </td>
</tr>
<tr bgcolor="#7B979A">
<td height="57" nowrap colspan="3" id="tagline" valign="top" align="center">{rs_index.tagline}</td>
<td width="100%"> </td>
</tr>[/PHP]
Und dagegen zum Vergleich die funktionierende
index.php:
[PHP]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Alph Raue - Berufliche Homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="css/mm_finance.css" type="text/css">
<style type="text/css">
@import url("css/mm_finance.css");
</style>
<script type = "text/javascript"></script>
</head>
<?php include ("dependence/include1.php");?>
#Ab hier wie oben[/PHP]
Beide mit inkludierten
include1.php:
[PHP]<?php
mysql_select_db($database_v_index, $v_index);
$query_rs_index = "SELECT * FROM index_beruf_db";
$rs_index = mysql_query($query_rs_index, $v_index) or die(mysql_error());
$row_rs_index = mysql_fetch_assoc($rs_index);
$totalRows_rs_index = mysql_num_rows($rs_index);
?>[/PHP]
index.php funktioniert, index_int.php nicht. Aber wie gesagt: Das bekomme ich schon noch raus (bestimmt wieder nur 'nen Faselfehler).
Wichtiger ist mir die Sache mit den Button...