Re: Apache-Postgres

From: Raúl Mero <rmero(at)marzam-online(dot)com>
To: Juan <lvcius(at)gmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Apache-Postgres
Date: 2006-03-13 14:54:57
Message-ID: 441587C1.1050608@marzam-online.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda


QUE TAL MIRA CON ESTE EJEMPLO Y DIME QUE TE SALE: colocale tus
variables tantos de conexion como de la base de datos

conex.php

<!-- MODULO PARA LA CONEXION A LA BASE DE DATOS -->

<?php

function Conectarse()

{

if

(!($link=mysql_connect("192.168.0.x","user_admin","password_admin")))

{

echo "ERROR AL CONECTARSE A LA BASE DE DATOS...";

exit();

}

if (!mysql_select_db("NODOMARZAMMANTA",$link))

{

echo "ERROR AL CONECTARSE A LA BASE DE DATOS...";

exit();

}

return $link;

}

?>


--------------------------------------------------------------------------------------------------------------

pgsql.php

<?

$server = "localhost";

$puerto = "5432";

$database = "nodomarzammanta";

$usuario = "Administrador";

$clave = "ANAHI_ATHINA1233";

// CREA LA CONEXION A POSTGRESQL

$connection = pg_connect("host=$server port=$puerto
dbname=$database user=$usuario password=$clave");

// SI EXISTE ALGUN ERROR LO IMPRIME

if (!$connection)

{

print("<script languaje=javascript> alert('Conexion
Fallida En $server Conectando $database'); </script>");

exit;

}

else

{

print("<script languaje=javascript> alert('Conexion Ok En
$server Conectando $database'); </script>");

}

// declare my query and execute

$myresult = pg_exec($connection, "select * from departamento");

$rows = pg_NumRows($myresult);

// Presenta la informacion almacenada en $resultado_set

for ($j=0; $j < $rows; $j++)

{

echo "ID_DEP :<b>".pg_result($myresult, $j, 0)."</b>

DESC_DEP :<b>".pg_result($myresult, $j, 1)."</b>

EMPR_ID :<b>".pg_result($myresult, $j, 2)."</b><br>";

}

/* Cierra la conexion con la base de datos */

pg_close($connection);

?>

Attachment Content-Type Size
rmero.vcf text/x-vcard 159 bytes

In response to

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Raúl Mero 2006-03-13 15:04:26 Re: Apache-Postgres
Previous Message Juan Martínez 2006-03-13 14:51:36 Re: Apache-Postgres