Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with link mailed by php

Status
Not open for further replies.

Petal

Programmer
Jun 8, 2001
56
NO
can u post the complete proper link?

Known is handfull, Unknown is worldfull
 
You can try to use URL encoded characters in your link generating script for the values after the equal signs.

It would also be helpful to see the code that generates the link.
Code:
# Suggestion
$URLemail = urlencode($email);
$URL = "[URL unfurl="true"]http://www.sidene.no/ekort_vis.php";[/URL]

# print or assemble
print($URL.'?ekort_id='.$ekortID.'&email='.$URLemail);
 
yeah thats the problem. the query string must be url encoded...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top