Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

sanchesjs

conectar a postgresql

Recommended Posts

tenho o seguinte index.phpe qdo tento entrar da a mensagem : Fatal error: Call to undefined function: mysql_connect()in /var/www/siteb2c/classdb.inc on line 50index.php ---><?php $area = 0; // 0 - NL, 1 - ADM, 2 - COMP require("header.inc"); require_once("classcategorias.inc"); require_once("classmaterias.inc"); require_once("classmateria_vinculos.inc"); require_once("classmateria_links.inc"); require_once("classpromos.inc"); require_once("classpromo_vinculos.inc"); require_once("classprodutos.inc"); require_once("classfornecedor.inc"); require("body.inc"); $cat = new categorias($con); $promo = new promo_vinculos($con); $mat = new materias($con); $rprod = new produtos($con); ?> <table border=0 cellpadding=0 celspacing=0 width=550 valign="top"> <tr> <td align="left" valign="top" width="550"> <span align="left" class="titulo"> <?php if(!empty($cod_cat)) { $cat->cod_categoria = $cod_cat; echo implode("::",array_reverse(explode(",",$cat->arvore($cod_cat)))); } else echo "SiteB2C : O lugar certo para você!<br><br>"; ?></span> </td> </tr> <?php if(!empty($cod_cat)) { ?> <tr> <td align="center" height="50" valign="middle" width="550"> <?php $cat->exibir($cod_cat,"",4,"link2"); ?> </td> </tr> <?php } ?> </table> <?php if(empty($cod_promo)) { $tipo = ($cod_cat!=0) ? "C" : "H"; $chave = ($tipo=="H") ? 0 : $cod_cat; $rel_mat = $mat->exibir($tipo,$chave); if(!empty($rel_mat)) { ?> <table border=0 cellpadin=0 celspacing=0 width=550 valign="top"> <tr> <td align="left" width="550" class="promo_titulo"><img src="imagens/materias.jpg" border=0></td> </tr> <tr> <td align="left" height="1" width="550" class="promo_titulo" bgcolor="#000099"></td> </tr> <tr> <td align="center" height="50" valign="middle" width="550"> <?=$rel_mat?> </td> </tr> </table> <?php } } $rel_promo = $promo->exibir($cod_promo,2,"","link2",6,$cod_cat); if(!empty($rel_promo)) { ?> <table border=0 cellpadin=0 celspacing=0 width=550 valign="top"> <tr> <td align="left" width="550" class="promo_titulo"><img src="imagens/promos.jpg" border=0></td> </tr> <tr> <td align="left" height="1" width="550" class="promo_titulo" bgcolor="#000099"></td> </tr> <tr> <td align="center" valign="middle" width="550"> <?=$rel_promo?> </td> </tr> <tr> <td height="20"></td> </tr> </table> <?php } $rel_produtos = $rprod->rel_produtos($cod_cat); if(!empty($rel_produtos)) { ?> <table border=0 cellpadin=0 celspacing=0 width=550 valign="top"> <tr> <td align="left" width="550" class="promo_titulo"><img src="imagens/produtos.jpg" border=0></td> </tr> <tr> <td align="left" height="1" width="550" class="promo_titulo" bgcolor="#000099"></td> </tr> <tr> <td align="center" height="50" valign="middle" width="550"> <?=$rel_produtos?> </td> </tr> </table> <?php } require("footer.shtml"); ?> </body> </html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Não está falando besteira não, são 2 bases de dados diferentes e, consequentemente com formas de acesso diferentes.

 

Consulte o manual do php em (PHP Net) e estude um pouco sobre essas bases de dados.

 

Ou se preferir aqui mesmo no site, na seção colunas, em PHP, tem bons tutoriais a respeito.

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.