Banned cause that is a total lie ^^
example of PHP:
<?php
$config['db'] =array(
'host" => 'localhost',
'username' => 'root',
'password' => '',
'dbname' => 'website',
);
$db = new PDO('mysql:host= . $config['db']['host'];dbname= $config['db] ['dbname'], $config ['db']['username'] , $config ['db'] ['password']');
$query = $db->prepare("SELECT articles. title",'ID' FROM articles' WHERE, 'articles' LIKE :search");
try (
$db->beginTransaction();
$db->query("INSERT INTO 'articles' ('articles'.'title') VALUES ('Another PDO Tutorial')");
$db->query("UPDATE 'articles' SET 'articles'.'views' = 1 WHERE 'articles'.'id' = " . $db->lastInsertId()
$db->commit();
) catch (PDOException $e) (
$db->rollBack();
die($e->getMessage());
) ?>