Jump to content
php.lv forumi

Mazs jautājums


lazda144

Recommended Posts

Ja mainīgo vārdi, kuri tiek izmantoti nepārklājas, tad nekādu problēmu nevajadzētu būt:

//connect1.php
$conn1=mysql_connect('host1','user1','pass1');

//connect2.php
$conn2=mysql_connect('host2','user2','pass2');

//abi_kopaa.php
include('connect1.php');
include('connect2.php');
$res1 = mysql_query('select id from tabula 1 where id < 4', $conn1);
$res2 = mysql_query('select count(lietas) from lietu_tabula', $conn2);

Link to comment
Share on other sites

×
×
  • Create New...