account.inc.php 283 B

1234567891011121314
  1. <?php
  2. if (isset($_SESSION["account_id"]))
  3. {
  4. $domain_query_where = "WHERE account_id='".$_SESSION["account_id"]."'";
  5. $website_query_where = array ( "account.account_id='".$_SESSION["account_id"]."'" );
  6. }
  7. else
  8. {
  9. $domain_query_where = "";
  10. $website_query_where = array( "1" );
  11. }
  12. ?>