JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
655e9b97ce8efce38a4f1e56ce9736b42efb68bf
[wfpl.git] / examples / db_connect.php
1 <?php
2
3 require_once(__DIR__.'/'.'code/wfpl/db.php');
4
5 # fill in whatever database credentials you need here:
6 db_connect('database_name', 'username', 'password', 'host');
7
8 # all fields are optional. see code/wfpl/db.php for details.
9
10 ?>