😕 Dear all, let's say I have a script call "script1.php", I'd like script1.php when executed to automatically parse a value to another script in another server.
script1.php
<?
execute "http://www.somedomain.com/script2.php?val1=....&val2=..."
send the result from executing script2.php?val1=..&val2 to some email address.
?>
the function Header(location:....) did not work because script1 is executed on the server, not on a user browser.
Any suggestion will be much appreciated.