If you want to call the new page with an URL, and you also want to pass some variables, you must encode them. The best choice is the urlencode() function.
<?php
$name=urlencode('ali abdul');
$city=urlencode('bagdad');
header( "Location: one.php?name=$name&city=$city");
?>
In the file one.php you may have something like this:
<?php
echo $GET['name'],"<br>";
echo $GET['city'];
?>
When you used a couple of words for a value, they were separated by a blank space. The urlencode use the plus(+) sign to encode the blank spaces.