good day!
i have a problem guys, how will i attach a string of data(gathered from a form) at the the end of an http request?
see below for clearer scenario:
html form has these variables:
- bmonth
- bday
- byear
when submitted call a PHP file using form's action="sample.php";
then string together those variables in mm/dd/yyyy format in PHP
$bdate = $bmonth . "/" . $ bday . "/" . $byear;
now, how will i submit this variable including this url " to a remote server?
thanks in advanced
i have a problem guys, how will i attach a string of data(gathered from a form) at the the end of an http request?
see below for clearer scenario:
html form has these variables:
- bmonth
- bday
- byear
when submitted call a PHP file using form's action="sample.php";
then string together those variables in mm/dd/yyyy format in PHP
$bdate = $bmonth . "/" . $ bday . "/" . $byear;
now, how will i submit this variable including this url " to a remote server?
thanks in advanced