A ver, mira este es el problema en si, yo tengo este código:
<?php require_once('encabezado.php'); ?>
<body>
<table width="100%"border="2" bgcolor="#D7D7D7" cellpadding="0" cellspacing="0">
<?php
//consulta.
$ejercicio=date('Y');
if (isset($_GET['id_empresas'])){
$id_empresa=$_GET['id_empresas'];
$query = "SELECT creditos.id_empresas,creditos.cif,creditos.cred,cr editos.ejercicio,empresas.* FROM empresas,creditos WHERE empresas.id_empresas='$id_empresas' and ejercicio='$ejercicio' and empresas.id_empresas=creditos.id_empresas";
$res= mysql_query($query) or die (mysql_error());
while ($fila = mysql_fetch_array($res)) {
?>
<tr>
<td>Id_Empresa</td><td><?php echo $fila['id_empresas'];?></td>
</tr>
<tr>
<td>CIF</td><td><?php echo $fila['cif'];?></td>
</tr>
<tr>
<td>NOMBRE </td><td><?php echo $fila['nombre'];?></td>
</tr>
<tr>
<td>DOMICILIO</td><td><?php echo $fila['domicilio'];?></td>
</tr>
<tr>
<td>POBLACIÓN</td><td><?php echo $fila['poblacion'];?></td>
</tr>
<tr>
<td>PROVINCIA</td><td><?php echo $fila['provincia'];?></td>
</tr
><tr>
<td>NÚMERO DE CP</td><td><?php echo $fila['cp'];?></td>
</tr>
<tr>
<td>NÚMERO DE TELÉFONO</td><td><?php echo $fila['telefono'];?></td>
</tr>
<tr>
<td>REPRESENTANTE</td><td><?php echo $fila['representante'];?></td>
</tr>
<tr>
<td><a href="mailto:<?php echo $fila['email2'];?>">ENVIAR CORREO</a></td></td>
</tr>
</table>
<table width="100%" border="2" bgcolor="#D7D7D7" cellpadding="0" cellspacing="0">
<tr>
<td>IMPORTE DEL CREDITO</td><td><?php echo $fila['cred'];?></td>
</tr>
</table>
</table>
<table width="100%" border="2" bgcolor="#D7D7D7" cellpadding="0" cellspacing="0">
<?php $ejerc= date ('Y')-1;?>
<tr><td><h3>CURSOS <?php echo "$ejerc";?></h3></td></tr>
<tr>
<td class="Estilo1"><strong>NOMBRE DEL CURSO</strong></td><td class="Estilo1"><strong>NºAF</strong></td><td class="Estilo1"><strong>Nº DE ALUMNOS</strong></td><td class="Estilo1"><strong>TIPO DE CURSO</strong></td><td class="Estilo1"><strong>FECHA DE INICIO</strong></td><td class="Estilo1"><strong>FECHA FINALIZACIÓN</strong></td><td class="Estilo1"><strong>
IMPORTE CURSO</strong></td></tr>
<?php
$fechaini=date("Y-01-01",strtotime("-365 days"));
$fechafin=date('Y/12/31',strtotime("-365 day"));
$query = "SELECT id_empresas,ejercicio FROM cur09 WHERE id_empresas ='$id_empresas' and ejercicio='$ejerc'";
$res= mysql_query($query) or die (mysql_error());
$fila=mysql_fetch_array($res);
if ($fila['id_empresas']==0) {
?>
<tr><td> <?php
echo"No existe esta empresa en el año $ejerc";?></td></tr>
<?php
}
else
{
$query = "SELECT * FROM cur09 WHERE id_empresas ='$id_empresas' and inicio between '$fechaini' and '$fechafin' and ejercicio='$ejerc'";
$res= mysql_query($query) or die (mysql_error());
while ($fila = mysql_fetch_array($res)){
?>
<tr>
<td><?php echo $fila['nombrecur'];?></td>
<td><?php echo $fila['accion'];?></td>
<td><?php echo $fila['alumnos'];?></td>
<td><?php echo $fila['tipo'];?></td>
<td><?php echo $fila['inicio'];?></td>
<td><?php echo $fila['finalizacion'];?></td>
<td><?php echo $fila['total'];?></td>
</tr>
<?php
}}
?>
</tr>
<?php
$query = "SELECT creditos.cif,creditos.cred FROM creditos WHERE id_empresas='$id_empresas' and ejercicio='$ejerc'";
$res= mysql_query($query) or die (mysql_error());
//impresión de los datos.
while ($fila = mysql_fetch_array($res)) {
?>
<td></td><td><?php $cred= $fila ['cred'];?></td>
</tr>
<?php
}
?>
<?php
$query = "SELECT SUM(dispuesto) AS gastado FROM $bd_tabla WHERE id_empresas='$id_empresas' and inicio between '$fechaini' and '$fechafin' and ejercicio='$ejerc'";
$res= mysql_query($query) or die (mysql_error());
//impresión de los datos.
while ($fila = mysql_fetch_array($res)) {
?>
<?php $gastado= $fila ['gastado'];?>
<tr><td>TOTAL DISPUESTO</td><td><?php echo $gastado;?></td>
</tr>
<tr>
<td>CRÉDITO DISPONIBLE</td><td>
<?php $disponible=$cred-$gastado;
print $disponible;
?>
<?php
}
?>
</td>
</tr>
<?php $año1=date('Y');?>
<tr><td><h3>CURSOS <?php echo "$año1";?></h3></td></tr>
<tr>
<td class="Estilo1"><strong>NOMBRE DEL CURSO</strong></td><td class="Estilo1"><strong>NºAF</strong></td><td class="Estilo1"><strong>Nº DE ALUMNOS</strong></td><td class="Estilo1"><strong>TIPO DE CURSO</strong></td><td class="Estilo1"><strong>FECHA DE INICIO</strong></td><td class="Estilo1"><strong>FECHA FINALIZACIÓN</strong></td><td class="Estilo1"><strong>
IMPORTE CURSO</strong></td>
<?php
$fecha1=date('Y-01-01');
$fecha2=date('Y-12-31');
$query = "SELECT * FROM cur09 WHERE id_empresas='$id_empresas' and inicio between '$fecha1' and '$fecha2' and ejercicio='$año1'";
$resul= mysql_query($query) or die (mysql_error());
//impresión de los datos.
while ($fila = mysql_fetch_array($resul)) {
?>
<tr>
<td><?php echo $fila['nombrecur'];?></td>
<td><?php echo $fila['accion'];?></td>
<td><?php echo $fila['alumnos'];?></td>
<td><?php echo $fila['tipo'];?></td>
<td><?php echo $fila['inicio'];?></td>
<td><?php echo $fila['finalizacion'];?></td>
<td><?php echo $fila['dispuesto'];?></td>
</tr>
<?php
}
?>
<?php
$query = "SELECT creditos.id_empresas,creditos.cred FROM creditos WHERE id_empresas='$id_empresas' and ejercicio='$año1'";
$res= mysql_query($query) or die (mysql_error());
//impresión de los datos.
while ($fila = mysql_fetch_array($res)) {
?>
<td></td><td><?php $cred= $fila ['cred'];?></td>
</tr>
<?php
?>
<?php
$query = "SELECT SUM(dispuesto) AS gastado FROM cur09 WHERE id_empresas='$id_empresas' and inicio between '$fecha1' and '$fecha2' and ejercicio='$año1'";
$res= mysql_query($query) or die (mysql_error());
//impresión de los datos.
while ($fila = mysql_fetch_array($res)) {
?>
<?php $gastado= $fila ['gastado'];?>
<tr><td>TOTAL DISPUESTO</td><td><?php echo $gastado;?></td>
</tr>
<tr>
<td>CRÉDITO DISPONIBLE</td><td>
<?php $disponible=$cred-$gastado;
print $disponible;
?>
</td>
</tr>
<?php
}}}}
?>
<tr><td>
<a href="listado3.php">VOLVER</a></td></tr>
<tr><td>
<script language=javascript>
function destino(){
url = document.navegador.secciones.options[document.navegador.secciones.selectedIndex].value
if (url != "no") window.location = url;
}
</script>
<form name=navegador>
<select name="secciones" onChange="destino()">
<option value="no">Selecciona el tipo de curso a crear
<option value="no">--------------------------------------
<option value="http://xxxx.php">opcion1
<option value="http://xxxx.php">opcion2
</select>
</td></tr>
</table>
EL PROBLEMA ES EL SIGUIENTE, CON ESTE CÓDIGO, USANDO EN RED LOCAL (intranet) ME MUESTRA UNA COSA EN CONCRETO ESTO:
Y SUBIENDO LA PÁGINA A INTERNET E INTENTAR USARLA A TRABES DE UNA BASE DE DATOS SUBIDA A INTERNET, ME SALE ESTO:
EL PROBLEMA NO ES QUE NO CONECTE CON LA BASE DE DATOS, PORQUE ESTE CODIGO ES DE UNA PAGINA PHP QUE ES PARTE DE UNA APLICACION Y ALGUNAS PAGINAS SI FUNCIONAN Y OTRAS NO.
GRACIASSSSSSSSSSS!!!!!!