میشه بی زحمت چک کنین این کلاس helper و اتصال به دیتابیس آیا امنیتش پایینه یانه؟
<?php
namespace der;
class db{
private $pdo;
private $tbl;
private $user;
private $password;
private $server;
private $dbname;
public function __construct($server='localhost',$dbname='tcode',$user='root',$password='')
{
$this->dbname = $dbname;
$this->server = $server;
$this->password = $password;
$this->user = $user;
$this->connect();
}
public function connect(){
try{
return $this->pdo=new PDO("mysql:host={$this->server};dbname={$this->dbname}","root",'');
}catch(Exception $e){
echo '<h1>مشکلی در اتصال به دیتابیس وجود دارد</h1>';
}
}
/**
* @param mixed $tbl
*/
public function setTbl($tbl)
{
$this->tbl = $tbl;
}
public function getTbl()
{
return $this->tbl;
}
}
?>
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟