|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hi there,
I'm trying to follow the perl tutorial as it is found on devshed, and now I'm trying to copy and understand the guestbook written in perl. When I sign the guestbook using the e-mail address rolfmolf@isp.com, and submit this it replies that my email-address is rolfmolf%40isp.com . So it appearently doesn't understand the "@". Does anybody know how to solve this? Thanks in advance, Rolf Deenen |
|
#2
|
|||
|
|||
|
It looks like it is escaping the @ character and replacing it.
You could try doing this before the email is output to the html page. Code:
$email =~ s/\%40/\@/; Hope that helps. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages > Perl Programming > rolfmolf%40isp.com |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|