mirror of https://github.com/itflow-org/itflow
13 lines
493 B
PHP
13 lines
493 B
PHP
<?php
|
|
$name = sanitizeInput($_POST['name']);
|
|
$address = sanitizeInput($_POST['address']);
|
|
$city = sanitizeInput($_POST['city']);
|
|
$state = sanitizeInput($_POST['state']);
|
|
$zip = sanitizeInput($_POST['zip']);
|
|
$country = sanitizeInput($_POST['country']);
|
|
$phone = preg_replace("/[^0-9]/", '',$_POST['phone']);
|
|
$email = sanitizeInput($_POST['email']);
|
|
$website = sanitizeInput($_POST['website']);
|
|
$locale = sanitizeInput($_POST['locale']);
|
|
$currency_code = sanitizeInput($_POST['currency_code']);
|