Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7078033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:29:48+00:00 2026-05-28T06:29:48+00:00

I Have a class called ‘DBinterface’ and a class called ‘user’. is it perfectly

  • 0

I Have a class called ‘DBinterface’ and a class called ‘user’.

  1. is it perfectly fine for the connect function to be public?

    class dbinterface {
    
        private $_dbLink;
    private $dbHost = 'host';
        private $dbUser = 'user';
        private $dbName = 'name';
        private $dbPass = 'pass';
        private $dbUserTable = 'table';
    
     public function connect ()
    {
        $this->_dbLink = mysql_connect($this->_dbHost, $this->_dbUser, $this->_dbPass);
        if(!$this->_dbLink) 
            throw new Exception ("Could not connect to database. " . mysql_error());
    }
    
  2. I have a sql table that stores all my users information like userID and password. can i put the name of that table into a function like this without the risk of someone somwhat easily hacking it, or should i put it with my db class?

    function registerUser($userName, $userPassword) {
    
        $db = new db();
        $db->connect();
    
        // Select database
        mysql_select_db($this->dbName);
    
        $query = "insert into usersExample values (NULL, \"$userName\", \"$userPassword\")";
        $result = mysql_query($query);
    
        // Test to make sure query worked
        if(!$result) die("Query didn't work. " . mysql_error());
    
        // Get the user ID
        $this->userID = mysql_insert_id();
    
        // Close database connection
        mysql_close($dbLink);
    
    } // End registerUser()
    

PS: i have removed password encryption and escape string for legibility.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:29:49+00:00Added an answer on May 28, 2026 at 6:29 am

    So you’re asking what the best way to escape data before insert is?

    Did you look into mysql_real_escape_string()?

    Or are you asking about web security in general? Like making sure nobody can somehow reveal your database info or call the script directly?

    You can nest your DB credentials beneath root and include them in this class. You can also prevent directly calling any file by defining a constant elsewhere in a common file and including something like this in the header of every class file:

    <?php defined('IN_APP') or die('No access allowed.');
    

    where obviously you would define IN_APP somewhere else:

    define('IN_APP', true);
    

    If I missed the point feel free to comment and I will adjust as best I can.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class called User with static function loginRequired(), which returns false if
I have this class called Table: class Table { public string Name { get
I have a class called Book; class Book { public string Name { get;
I have a class called UserInfo that contains details about a given user. There
I have a class called PurchaseOrderItem public class PurchaseOrderItem { public Int64 PONumber {
I have a class called Employee with its 2 private variables and also contains
I have a class called Object : class Object { public: Vector pos; float
i have a class called (User) and i want to make a multidimensional array
I have a class called contact: class contacts { public $ID; public $Name; public
I have a class called Foo that has a function that looks like the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.