<script language="php">
$name =$_POST['n'];
$email =$_POST['e'];
$link ="</script>
The above fragment works fine when name contains no spaces. However when I receive a name with spaces in it, it truncates the outgoing querystring at the space.
What is the best way to handle this?
Clive
$name =$_POST['n'];
$email =$_POST['e'];
$link ="</script>
The above fragment works fine when name contains no spaces. However when I receive a name with spaces in it, it truncates the outgoing querystring at the space.
What is the best way to handle this?
Clive