Quote database webapp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.php 189B

1234567891011
  1. <?PHP
  2. require_once('inc/settings.php');
  3. mysql_connect(MYSQL_SERVER, MYSQL_USER, MYSQL_PASS);
  4. mysql_select_db(MYSQL_DB);
  5. function m ($t) { return mysql_real_escape_string($t); }
  6. ?>