[PHP-DB] PHP Sessions

2005-04-14 Thread Ian McGhee
Hi All, 

 

I have been looking into PHP sessions and I have noticed you can
actually use a database for storing the sessions instead of flat files I
will be using MS SQL for the database can any one give be a clue as to
how I would go about this or point me in the direction of a good
tutorial?

 

Any Help would be greatly appreciated, 

 

Ian McGhee 


Email: [EMAIL PROTECTED] 

 



RE: [PHP-DB] slow connection 2 DB2 database on as400.

2004-10-28 Thread Ian . McGhee
Hi I have been trying to connect to a DB2 database on an IBM AS400 system. I
manage to get connected using ODBC however it is slow at connecting and
every time the page is refreshed it seems to have to connect again. Any help
would be appreciated.

I use the below code to connect.
In a file called AS400dbconnect.inc

?


$host = LAWSON01;
$username = MYUSERNAME;
$password = MYPASSWORD;


$link= odbc_connect($host, $username, $password,SQL_CUR_USE_ODBC)


or die (odbc_errormsg() );

?

Then in a file called as400.inc
The following cote is in it 


?PHP


include('includes/as400dbconnect.inc');




if ($link)
{
  echo odbc connectedbr;
  $sql =  select * from exrcvbuf; 
  
  //this function will execute the sql satametn in  
  //correspondance to the table in the db
   $exc=odbc_exec($link,$sql)
or (odbc_errormsg());
  
}
else
  echo odbc not connectedbr;
 
if($exc)
{

$Fields = odbc_num_fields($exc); 

print table border='1' width='100%'tr; 

// Build Column Headers 

 for ($i=1; $i = $Fields; $i++)
{ 
printf(th bgcolor='silver'%s/th, odbc_field_name(
$exc,$i)); 
}

// Table Body 

$Outer=0; 
while( odbc_fetch_row( $exc ))
{ 
$Outer++; 
print tr; 
   
for($i=1; $i = $Fields; $i++)
{ 
printf(td%s/td, odbc_result( $exc, $i
)); 
} 
 
print /tr; 
} 

print /table; 
print b Your request returned $Outer rows!/b; 



}

else
  echo selection failedbr;
?




It is running in and apache server with php set up using the .dll method.
Ian McGhee
Junior Analyst Programmer
Richard Lawson Autologistics Group
Telephone: 01382 560259
Email: [EMAIL PROTECTED]

J B Cartwright, G D Frost and R J Hunt have been appointed as joint
administrators of Richard Lawson Autologistics Limited, on 14th September
2004, to manage its affairs, business and property. As such they contract
without personal liability. Both J B Cartwright and G D Frost are
licensed to act as Insolvency Practitioners by the Institute of Chartered
Accountants of Scotland and R J Hunt is licensed to act as an Insolvency
Practitioner by the Institute of Chartered Accountants in England and Wales.


=

If you are not the intended recipient of this message, you should not
review, print, re-transmit, store or take any actions based on the content
of this e-mail or any attachments. Please contact the sender by e-mail and
delete the material from any computer.

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php