| 1234567891011121314151617181920212223 |
- <?php
- /**
- * Indicates whether the framework is in debug mode, which right
- * now only means that occuring errors will be displayed or not.
- *
- * @var bool
- */
- define('PQUERY_DEBUG', true);
- /**
- * The root location of the pQuery framework folder, used for file
- * inclusions. The path is absolute and should end with a slash ('/').
- *
- * @var string
- */
- define('PQUERY_ROOT', 'D:/xampp/htdocs/pquery/');
- define('SITE_ROOT', 'D:/xampp/htdocs/pquery/');
- include_once PQUERY_ROOT.'pquery.php';
- ?>
|