Can someone confirm if I’m crazy?
Trying to capture when the “Add New” button is clicked using this code…
if (sc_btn_new) {
echo “New Button Pressed”;
} else {
//Do Nothing;
}
When I run the form the echo always happens twice even before I click on the button?
Am I missing something here?
Thanks for any help.