Handle Check Duplicate

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
Bishu
User
Posts: 429

Handle Check Duplicate

Post by Bishu »

I have filed which I have chose the option Check Duplicate.

Whenever there is Duplicate for this particular field I want to show the message as "You Have already Registered".

and for some other field If there is any duplicate I would like to redirect to another page.


mobhar
User
Posts: 11703

Post by mobhar »

  1. Put the following code in "Page_Load" server event that belongs to the "Add/Copy Page":

Language()->setPhrase("DupIndex", "You Have already Registered");

  1. Put the following code in "Page_Render" server event that belongs to the "Add/Copy Page":

if ($this->getFailureMessage() <> "") {
$this->Page_Terminate("yourtablelist.php"); // adjust yourtable with your actual table
}


Post Reply