Forum Moderators: DixonJones
So your link points to
www.example.com/a_page.php
Add something like:
www.example.com/a_page.php?tracking_id=34534459987960
When you send out emails record which email has which tracking number in a DB similar to this layout.
Reference_ID ¦ Email
34534459987960 ¦ info@example.com
34534459987961 ¦ blah@example.com
On the landing page ..../a_page.php
Have something that says
if tracking_id:
record_tracking_id(id=request['tracking_id'])
The record_tracking_id can enter into a db saying
Reference_ID ¦ page ¦ time
34534459987960 ¦ a_page ¦ 123:099867GMT
Or what ever you want to do with it.
Hope this helpes and makes sense.