mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
rename /user/ to /agent/ and update links to use agent/ instead
This commit is contained in:
10
agent/post/product_model.php
Normal file
10
agent/post/product_model.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
||||
|
||||
$name = sanitizeInput($_POST['name']);
|
||||
$description = sanitizeInput($_POST['description']);
|
||||
$code = sanitizeInput($_POST['code']);
|
||||
$location = sanitizeInput($_POST['location']);
|
||||
$price = floatval($_POST['price']);
|
||||
$category = intval($_POST['category']);
|
||||
$tax = intval($_POST['tax']);
|
||||
Reference in New Issue
Block a user