as it say in title you can extract action from your database (if you have quest/mission from another db can use this to extract it), it just improve version from
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
whay you need latest xampp version installed in your pc because its using PDO PHP.
what it can do:
select all,copy and clear all text in textbox.
edit your config.php:
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
whay you need latest xampp version installed in your pc because its using PDO PHP.
what it can do:
select all,copy and clear all text in textbox.
edit your config.php:
[Only registered and activated users can see links. Click Here To Register...]Quote:
<?php
// Define database
define('dbhost', 'localhost');
define('dbuser', 'test'); //your mysql user
define('dbpass', 'test123'); //your mysql pass
define('dbname', 'newdb1'); //your mysql database
// Connecting database
try {
$con = new PDO("mysql:host=".dbhost."; dbname=".dbname, dbuser, dbpass);
$con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e) {
echo $e->getMessage();
}
?>