Thank you very much!
The following code worked fine:
Code:
$text1 = urlencode($_POST[text]);
$text2 = "www.SchuelerCommunity.com";
$text = $text1 . $text2;
But when I tried the following, it doesnt work:
Code:
$text1 = urlencode($_POST[text]);
$text2 = "Kostenlos aus www.SchuelerCommunity.com";
$text = $text1 . $text2;
Why this? I think it's because of the space....
Any help?
Thank you