require_once ('./includes/bootstrap.inc'); drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); session_start(); if(isset($_REQUEST["assid"])) { // echo $_REQUEST["adminid"]; $rowid=$_REQUEST["assid"]; $sqlqueryfetchrows="select * from tblassociation where intassociationid = ".$rowid; //echo $sqlqueryfetchrows; $adminselect=mysql_query($sqlqueryfetchrows); $no_rows=mysql_num_rows($adminselect); $edit="true"; while($rs=mysql_fetch_array($adminselect)) { $Enabled = ""; $assid = $rs["intassociationid"]; $countryid = $rs["intcountryid"]; $associationname= $rs["strassociationname"]; $notes = $rs["notes"]; $contact = $rs["strcontactperson"]; $address1 = $rs["straddress1"]; $address2 = $rs["straddress2"]; $city = $rs["strcity"]; $telephone = $rs["strtelephone"]; $email = $rs["stremail"]; $fax = $rs["strfax"]; $url = $rs["strurl"]; } } ?>