OK. So. Values (text) are passed on to my Image.php using a Form with method=GET.
This way the URL becomes Image.php?Var1=Value1&Var2=Value2&Var3=Value3 & so on
How do I get the contents of my modified Image.php?
Because when I refer to my Image.php as simply Image.php it gets the basic ("initial") values of Var1 & Var2 & Var3 and not the values passed on to it using the form with method=GET.
The particular function I am using in my SendMail.php, require(), won't accept Image.php?Var1=Value1&Var2=Value2&Var3=Value3 & include doesn't recognize Image.php as an image at all (for some weird reason).
If there's perhaps another way of doing this whole shebang pls. recommend/suggest it.
Thanks