Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~133 People Reached
Favorite Forums
Favorite Tags
php x 4
Member Avatar for N3UR0P0LL

I made a little code to update record in database like this: [PHP] require_once('includes/config.php'); if ((isset($_POST["DO_update"])) && ($_POST["DO_update"] == "edit_product")) { $ProductID = $_POST["txtProductID"]; $CategoryID = $_POST["txtCategoryID"]; $ProductName = $_POST["txtProductName"]; $ProductPrice = $_POST["txtProductPrice"]; $IsRebate = $_POST["selIsRebate"]; $RebatePrice = $_POST["txtRebatePrice"]; $ImageFileName = $_POST["txtImageFileName"]; $BigImageFileName = $_POST["txtBigImageFileName"]; $ProductDetails = $_POST["txtProductDetails"]; $query_update = …

Member Avatar for N3UR0P0LL
0
133