Code: Select all
RewriteRule ^firstnamesurname$ folder1/page.php?var=Firstname-Surname [NC,L]Code: Select all
<?php
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
<?php
$url = curPageURL();
parse_str(parse_url($url, PHP_URL_QUERY), $vars);
$name = $vars['var'];
$customer = str_replace("-"," ",$name);
?>Code: Select all
<?php
echo "Dear $customer\n"; ?>It works perfectly fine.
Can somebody point me in the right direction?
Eddy