S
Simon
Guest
I'm using a program that will SMS/mail me results with the help of a .php code. But I have no clue what to input into the code, and where to do so:
<?php
$address = $_GET['to'];
$message = $_GET['m'];
mail( "$address", "", "$message");
echo 'Sent the email';
?>
Anybody help me decipher this?
<?php
$address = $_GET['to'];
$message = $_GET['m'];
mail( "$address", "", "$message");
echo 'Sent the email';
?>
Anybody help me decipher this?