Create a Double Opt In Registration System with Data Bridge

Опубликовано: 20 Март 2026
на канале: WebAssist
3,741
17

This video tutorial walks you through the steps to create a double opt in registration system, where users have to verify their email address after they register. You can use Data Bridge to follow these steps in Dreamweaver.

We have a written tutorial with these steps at: http://www.webassist.com/support/data... For more information or technical support, please visit http://www.webassist.com.

You will need to copy and paste 3 snippets as part of this video tutorial (or get them from the written tutorial). Don't forget the "less than" sign/carrot before ?php and the "greater than" sign/carrot after the php statements that end in ? (YouTube does not allow these characters in the video description.)

Email url query string
?php echo $row_SecurityAssistusers['UserEmail']; ?

Email global variable:
global $row_SecurityAssistusers;

True/false value:
?php echo(($row_SecurityAssistusers['UserEmail'] != $_POST["User_Update_group_Email"])? '0': $row_SecurityAssistusers['emailVerified']); ?