close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Need to ensure a product has a minimum weight

Thread began 7/17/2012 4:34 am by mrs | Last modified 7/18/2012 1:29 pm by mrs | 1467 views | 6 replies |

mrs

Need to ensure a product has a minimum weight

In the admin page products_insert.php I have attempted to amend the weight text box to have a minimum weight of 0.01kg, but it breaks it's link to the DB when I change it.

So I have:

<input name="ProductWeight" type="text" id="ProductWeight" onBlur="" value="<?php echo(isset($_SESSION["WAVT_ProductsInsert_Errors"])?ValidatedField("ProductsInsert","ProductWeight"):"") ?>" size="32" />

and I m trying and have tried numerous ways of trying to post 0.01 without breaking the code for the insert or validation.

I've tried adding 0.01 to the DB column as a default value if the weight text box is left empty, but the DB shows -1.00.

Any thoughts?

Thanks.

Sign in to reply to this post

Jason ByrnesWebAssist

try adding this code at line 1 of the product insert page:

php:
<?php if(isset($_POST["ProductWeight"]) && floatval($_POST["ProductWeight"]) < 0.01$_POST["ProductWeight"] = 0.01?>
Sign in to reply to this post

mrs

No, that didn't work either!

I also tried:


<?php if(isset($_POST["ProductWeight"]) && floatval($_POST["ProductWeight"]) = "") $_POST["ProductWeight"] = "0.01"; ?>


and


<?php if(isset($_POST["ProductWeight"]) && floatval($_POST["ProductWeight"]) == '') $_POST["ProductWeight"] = 0.01; ?>



and


<?php if(isset($_POST["ProductWeight"]) && floatval($_POST["ProductWeight"]) == NULL) $_POST["ProductWeight"] = 0.01; ?>

Sign in to reply to this post

Jason ByrnesWebAssist

I have created a support ticket so we can look into this issue further.

To view and edit your support ticket, please log into your support history:
supporthistory.php

If anyone else is experiencing this same issue, please append to this thread.

Sign in to reply to this post

jeff382039

&& Operator

Just as a test maybe try changing the (and) && operator to the (or) || operrator (Just try it and see if it works...)

Sign in to reply to this post

Jason ByrnesWebAssist

the check in my original code is to make sure that the Weight is set, AND that it is below 0.01

if you use the or separator, you will end up with an undefined index warning on page load if you set the error reporting level to show warnings.

the warning will happen because the weight variable wont have a value, using the or seperator will cause it to look at the second condition, but the variable doesn't exist yet.

Sign in to reply to this post

mrs

I decided to move the weight text box to the first spry panel and make it a required value. That way the user knows they have to enter a value.

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...