I found some code here for spinning.
Tried to add if/else. But could not get it to work as described below.
What I want to do is; depending on the value of the $dom, change some part of the text. On this example; if "dom=com" link is clicked, the text should be "is this the domain .com ?" if not then "is this the domain .us ?" And the reason that I wanted to do it this way is; I am planning to use this piece of code for a few parked domains so some part of the texts will be different.
<h1><a href="/test.php?dom=com">com</a> | <a href="/test.php?dom=us">us</a></h1>
<?
$dom = $_GET['dom'];
function spin($var){
$words = explode("{",$var);
foreach ($words as $word)
{
$words = explode("}",$word);
foreach ($words as $word)
{
$words = explode("|",$word);
if ($dom = "com"){$word = $words[0];}
else {$word = $words[1];}
echo $word." ";
}
}
}
$text = "<font size=\"6\">is this the domain {<b>.com</b> |<b>.us</b> } ?, so you are from {anywhere|usa} ?</font><br />";
spin($text);
?>