espero me ayuden:
my script es este
---------------------------------------
<?
function html_encabezado($titulo,$descripcion,$keywords)
{
echo "<HTML>\n<HEAD>\n<TITLE>$titulo</TITLE>
<meta name=\"description\" content=\"$descripcion\">
<meta name=\"keywords\" content=\"$keywords\">
<meta name=\"title\" content=\"$titulo\"></HEAD>\n
<style type=\"text/css\"><!--A:link {text-decoration: none; color : #9933ff;} A:visited {text-decoration: none; color : #9933ff;} A:active {text-decoration: none}
BODY
{
font-size : 11pt;
font-family : comic sans ms,verdana,arial,helvetica;
font-weight : bold;
color : 0066ff;
background-color : #ccff00;
margin-left : 0px;
margin-right : 0px;
margin-top : 0px;
margin-bottom : 0px;
}
TD {
font-size : 11pt;
font-weight : bold;
font-family : comic sans ms,verdana,arial,helvetica;
color : 0066ff;
}
-->
</style>
<body>\n";
}
function html_pie_volver($volver)
{
echo "<div align=\"center\"><a href=\"$volver\">Volver</a></div>
</body>
</html>";
}
function mysql_conexion()
{
$hostname="mysql.webcindario.com";
$login="burbujaverde";
$password="193746825";
$db="burbujaverde";
$conectar=mysql_connect($hostname,$login,$password);mysql_select_db($db,$conectar);
if (!$connectid)
echo "Error en la conexión con la base de datos";
else
return $connectid;
}
?>
---------------------------
luego lo llamo con include........
---------------------------
y me sale el siguiente mensaje
---------------------------
Error en la conexión con la base de datos
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/webcindario/burbujaverde/verpostales.php on line 25
---------------------------
mi script de ver postal es
-----------------------------
//Conectamos a la BD
$connectid=mysql_conexion();
//Ejecutamos sentencia SQL y recogemos resultado en damefila
$resultid = mysql_db_query("Postal",$ssql);
$damefila=mysql_fetch_array($resultid);
//Creamos las celdas con las imagenes/enlace
while ($damefila)
{
$i=1;//i es el numero de columnas de la tabla
echo "<tr>\n";
while ($i<=4 and $damefila)
{
echo '<td><a href="formulario.php?id='.$damefila["id_imagen"].'"><img src="imagenes/'.$damefila["id_imagen"].".gif\" border=\"0\"></a></td>\n";
++$i;
$damefila=mysql_fetch_array($resultid);
}
echo "</tr>\n";
}
?>
--------------------------------
si me ayudan no estaria mal eh!!!
garcias