Home  >  Article  >  Backend Development  >  php join function application_PHP tutorial

php join function application_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:30:28732browse

Copy code The code is as follows:

$key = array();
$val = array();
foreach ($_POST as $k=>$v)
{
$key[] = '`'.strip_tags(mysql_real_escape_string(trim($k))).''';
$val[ ] = "'".strip_tags(mysql_real_escape_string(trim($v)))."'";
}

$keys = join(",",$key);
$vals = join(",",$val);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323208.htmlTechArticleCopy the code The code is as follows: $key = array(); $val = array(); foreach ($_POST as $k=$v) { $key[] = '`'.strip_tags(mysql_real_escape_string(trim($k))).'''; $val[] = "'".strip_tags(mysq...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn