In the code below what does the & (ampersand) at the beginning of the
function name do?

Code from ADODB library--------------------------------------

function &ADONewConnection($db='')
 {
 GLOBAL $ADODB_Database;

  $rez = true;
  if ($db) {
   if ($ADODB_Database != $db) ADOLoadCode($db);
  } else {
   if (!empty($ADODB_Database)) {
    ADOLoadCode($ADODB_Database);
   } else {
     $rez = false;
   }
  }


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

Reply via email to