close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Validation success not firing?

Thread began 2/10/2017 9:55 am by Steve | Last modified 2/11/2017 1:07 pm by Ray Borduin | 395 views | 4 replies |

Steve

Validation success not firing?

Hello,
I have the fail working but the success is not. Any reasons why?

<?php 
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$WAFV_Redirect = "";
$_SESSION['WAVT_EmployeeDetails_705_Errors'] = "";
if ($WAFV_Redirect == "") {
$WAFV_Redirect = $_SERVER["PHP_SELF"];
}
$WAFV_Errors = "";
$WAFV_Errors .= WAValidateRX(((isset($_POST["textPass"]))?$_POST["textPass"]:"") . "","/^(?=.*\d)(?=.*\W).{8,20}$/",true,1);

if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"EmployeeDetails_705");
}
}
?>




<div class="row col-md-12">

<div class="col-md-6">
<label for="textPass">Your current password is:</label>
<input name="textPass" type="text" id="textPass" value="<?php echo($rsDetails->getColumnVal("password")); ?>" class="form-control">
<!-- TODO ADD Validation to make password secure -->
(requires 8-20 characters with 1 number and 1 special character such as: !@#$%^&*)
</div>


<?php
if (ValidatedField('EmployeeDetails_705','EmployeeDetails_705')) {
if ((strpos((",".ValidatedField("EmployeeDetails_705","EmployeeDetails_705").","), "," . "") >= 0)) {
if (!((strpos((",".ValidatedField("EmployeeDetails_705","EmployeeDetails_705").","), "," . "1" . ",") !== false || "1" == ""))) {
?>
<div class="alert-success col-md-6">Password Updated Successfully</div>
<?php //WAFV_Conditional Employee-Details.php EmployeeDetails_705(:1)
}
}
}?>




<?php
if (ValidatedField('EmployeeDetails_705','EmployeeDetails_705')) {
if ((strpos((",".ValidatedField("EmployeeDetails_705","EmployeeDetails_705").","), "," . "1" . ",") !== false || "1" == "")) {
if (!(false)) {
?>
<div class="alert-warning col-md-6">Password did not update Successfully (requires 8-20 characters with 1 number and 1 special character)</div>
<?php //WAFV_Conditional Employee-Details.php EmployeeDetails_705(1:)
}
}
}?>

</div>
Sign in to reply to this post

Ray BorduinWebAssist

The validation success will actually only run if at least one validation fails but that one succeeds. The solution is to just use the form submit as the condition for the success message like:


<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
?>
<div class="alert-success col-md-6">Password Updated Successfully</div>
<?php
}
?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Steve

Thanks... Yes I am able to use that to get the success BUT once a fail is set it will not clear...
Frustrating.

Sign in to reply to this post

Ray BorduinWebAssist

I see. A simple solution would be to wrap the fail validation in the reverse IF statement like:

php:
<?php

  
if ($_SERVER["REQUEST_METHOD"] != "POST")  {
?>
<?php
if (ValidatedField('EmployeeDetails_705','EmployeeDetails_705'))  {
  if ((
strpos((",".ValidatedField("EmployeeDetails_705","EmployeeDetails_705").","), "," "1" ",") !== false || "1" == ""))  {
    if (!(
false))  {
?>
                <div class="alert-warning col-md-6">Password did not update Successfully (requires 8-20 characters with 1 number and 1 special character)</div>
            <?php //WAFV_Conditional Employee-Details.php EmployeeDetails_705(1:)
    
}
  }
}
?>
<?php
  
}
?>
Sign in to reply to this post
Did this help? Tips are appreciated...

Steve

Thanks Ray

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...