hello,

i have a form in my site connected to a database for registering new members through the insert record server behaviour in dreamweaver. i would like to add a functionality that will notify me through email when a new member registers.

help greatly appreciated

This is simple. After the db has been successfully updated run a simple mail command.
In you code, where you submit the data to the database, add this below the success check.

$msg = 'blah blah blah';
mail('your@email.com', 'New user registration', $msg);

This should send a plain text email, you can edit the $msg to say what ever you need.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.