i need some quick php help...
let's say i have a file called x.php
with a few variables in it
and a file called y.php with
how could i get y.php to update the variable value in x.php?
thanks
let's say i have a file called x.php
with a few variables in it
Code:
$a = "2"; $b = "ddd";
Code:
include 'x.php';
thanks

Comment