ok
Direktori : /home2/selectio/public_html/thecomponents.in/admin/ |
Current File : //home2/selectio/public_html/thecomponents.in/admin/play-store-privacy-policy.php |
<?php include('includes/crud.php'); $db = new Database(); $db->connect(); $sql = "SELECT value FROM `settings` where `variable` ='privacy_policy'"; $db->sql($sql); $res = $db->getResult(); ?> <!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta name='viewport' content='width=device-width'> <title>Privacy Policy</title> <style> body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; padding: 1em; } </style> </head> <body> <?= $res[0]['value']; ?> </body> </html>