我一直在围绕着这几个小时。基本上我有一个显示数据库用户信息的div:
if (isset($_SESSION['email']) && ($_SESSION['userID'])) {
$sql = "SELECT * FROM user_accounts WHERE email='" . $_SESSION['email'] . "' AND user_id=" . $_SESSION['userID'] ;
$userRecordSet = $_dbConn->query($sql);
if ($userRecordSet != NULL) {
$userRow = $userRecordSet->getrow();
$firstName = $userRow['first_name'];
$lastName = $userRow['last_name'];
}
}
然后将名字和姓氏放入div并显示给用户。
<div id="nameChange" title="Click to edit"><?=$firstName?> <?=$lastName?></div>
当用户点击此DIV元素时,它会转换为文本框,并显示用户从DIV获取的名字和姓氏的内容。这是支持上述内容的Jquery。
//execute when nameChange DIV is clicked
$("#nameChange").click(function(){
//check if there are any existing input elements
if ($(this).children('input').length == 0){
$("#save").css("display", "inline");
//variable that contains input HTML to replace
var inputbox = "<input type='text' class='inputbox' name='userName' value=\""+$(this).text()+"\">";
//insert the HTML intp the div
$(this).html(inputbox);
//automatically give focus to the input box
$("this .inputbox").focus();
}
});
这样做会对数据库造成问题,因为我希望名字和姓氏进入单独的列,但在将其转换为文本框后,内容将被放入单个变量中。现在问题。
如何解析文本框并为名字和姓氏分配2个单独的变量?
答案 0 :(得分:1)
这假设您使用php
完成了对数据库的最终解析。
这里有两个函数,用于从文本输入中获取名字和姓氏:
//returns first name form full name input
public function FirstName($input)
{
$name = explode(" ",$input);
$howmany = count($name);
if($howmany != '1')
{
if($howmany == '2')
{
$firstname = $name[0];
return $firstname;
}
if($howmany == '3')
{
$firstname = $name[0]." ".$name[1];
return $firstname;
}
}
return false;
}
//returns last name from full name input
public function LastName($input)
{
$name = explode(" ",$input);
$howmany = count($name);
if($howmany != '1')
{
$last = $howmany -1;
$lastname = $name[$last];
return $lastname;
}
return false;
}
这考虑了有两个名字的人,例如“mary lynn”