Hi! I wanted to use PHP do do a little thing, but I needed to know how to get a variable from an external document (say external.php) and use it in a function in a PHP document (internal.php). I was thinking maybe something like this:
Code for external.php
$variable = "true";
Code for internal.php
if ($GETFROM{'/external.php'}['variable'])
echo "It worked";
Is there any possible way to do something like this?