globalspecialeffects
Member
Let's say we're in subscribe_single_fixed.php, and I would like to create a regular link (instead of the default submit button) to subscribe or unsubscribe someone from a list. This should be simple. I'm a PHP novice, but I have tried everything that looks anything like this:
How far off am I? Is it really a lot more difficult than something like that? Also, if you can pull the $email into the string, then you should also be able to include $admin_password as well, right? That way it's a lot more secure than just having your password out there for everyone to see. Please help.
Code:
<a href="http://...lm/lm.php?cmd=unsubscribe&list=[name of list]&email=<?php echo $email ?>&pwd=[password]">Unsubscribe</a>
How far off am I? Is it really a lot more difficult than something like that? Also, if you can pull the $email into the string, then you should also be able to include $admin_password as well, right? That way it's a lot more secure than just having your password out there for everyone to see. Please help.