Skip to content
This repository has been archived by the owner on May 26, 2023. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 204 Bytes

Dev-Ops.md

File metadata and controls

14 lines (10 loc) · 204 Bytes

In /etc/apache2/envvars

export EXAMPLE="this is an example"

In /var/www/html/.php

<?php getenv('example') ?>

// if PHP7, maybe you will need
// to use $_SERVER[] or $_ENV[]