Hi
Can someone convert me this php code to Java Server Pages ?
<?php
$var1 = $_POST['userAge'];
$var2 = $_POST['userBirth'];
$url = 'h_t_t_p://externalwebsite.com/script.php?temp1=' . $var1 . '&temp2=' . $var2;
$content = file_get_contents($url);
?>
Regards




Reply With Quote