Currently my input page looks like this...
Code: Select all
<form action="sendit.php" method="post" name="form1">
<input type="text" name="phone" value="" size="160">
<input type="submit" value="Submit" name="submit">
Code: Select all
$people = array(
"+19145551111",
);
Code: Select all
+19145551111,+19145551212,+19145551313,+19145551414Code: Select all
$people = array(
"+19145551111",
"+19145551212",
"+19145551313",
"+19145551414",
);Right now I am hard-coding the numbers when I need to send out bulk messages but I would rather do it via a input form page. Thanks!