我想将数据更新到mysql数据库我知道查询。查询不是问题..
我面临的问题是我应该如何将id页面发送到其他页面..
假设我在页面上skill_edit.php?id = 7 然后我点击更新按钮,然后使用表格的POST方法从skill_edit.php转到技能.php。
但是现在我如何将表格的id或表格中的行ID发送到“skills.php”
我的数据库:
我的表格在skill_edit.php
<form class="form-horizontal row-fluid" method="post" action="skills.php">
<?php //Skill Name ?>
<div class="form-row control-group row-fluid">
<label class="control-label span3" for="with-placeholder">Skill Name</label>
<div class="controls span7">
<input type="text" name="skill_name" id="with-placeholder" class="row-fluid" value="<?php echo $showskillname; ?>">
</div>
</div>
<?php //Skill Description ?>
<div class="form-row control-group row-fluid">
<label class="control-label span3" for="elastic-textarea">Skill Desc <span class="help-block">My Skill Description</span> </label>
<div class="controls span7">
<textarea name="skill_desc" rows="3" style=" height:80px;" class="row-fluid autogrow" id="elastic-textarea"><?php echo $showskilldesc; ?></textarea>
</div>
</div>
<?php //Selecting Language ?>
<div class="form-row control-group row-fluid">
<label class="control-label span3">Select with search</label>
<div class="controls span7">
<select name="skill_rating" data-placeholder="Choose a Language...." class="chzn-select">
<option value="<?php echo $showskillrating; ?>"><?php echo $showskillrating; ?></option>
<option value="1">1 Star</option>
<option value="2">2 Star</option>
<option value="3">3 Star</option>
<option value="4">4 Star</option>
<option value="5">5 Star</option>
</select>
</div>
</div>
<?php //Buttons ?>
<div class="form-actions row-fluid">
<div class="span7 offset3">
<button name="updatebtn" style=" float:left; margin-left:40px;" type="submit" class="btn btn-primary">Save changes</button>
<button formaction="skills.php" style=" float:right; margin-right:40px;" type="submit" class="btn btn-secondary">Cancel</button>
</div>
</div>
</form>
我的skill.php页面,我获取数据
if(isset($_POST['updatebtn']))
{
$updatedskillname = mysql_real_escape_string($_POST['skill_name']);
$updatedskilldesc = mysql_real_escape_string($_POST['skill_desc']);
$updatedskillrating = mysql_real_escape_string($_POST['skill_rating']);
$last_updated = mysql_real_escape_string(date('F j, Y, g:i a'));
$update=update_skill($updatedskillname, $updatedskilldesc, $updatedskillrating, $last_updated);
}
这是函数的内部
//Update Skill
//skills.php
function update_skill($updatedskillname, $updatedskilldesc, $updatedskillrating, $last_updated)
{
$query="UPDATE cv_skills SET
skill_name='$updatedskillname',
skill_desc='$updatedskilldesc',
skill_rating='$updatedskillrating',
last_updated='$last_updated' WHERE skill_id='$pageid'";
$result=mysql_query($query);
$error=mysql_error();
return $error;
}
那我怎样才能在查询中获得skill_id?
答案 0 :(得分:3)
有几种方法可以做到这一点,但其中一种方法是:
<form class="form-horizontal row-fluid" method="post" action="skills.php?id=<?php echo $_GET['id']; ?>">
然后,这将返回到自己,身份仍然很好。另一种方法是你可以使用隐藏字段,然后将id发回表单。
隐藏:
<input type="hidden" name="id" value="<?php echo $_GET['id']; ?>">
答案 1 :(得分:0)
最好的选择是将id实际存储在会话或cookie变量中并将其用作限定符 - 但这是另一天。
<?php
//create a login form at post to this script at login...
/*
<form action="" method="post">
<label>Email:</label><br />
<input type="text" name="email" /><br /><br />
<label>Password:</label><br />
<input type="password" name="password" /><br /><br />
<label>Remember Me:</label><br />
<input type="checkbox" name="remember" /><br /><br />
<input type="submit" name="submit" value="Login" /><br /><br />
</form>
*/
//connect to your database here...
//something like..
include('../includes/db_connection.php');
/*
Table "users" fields would contain userid(int), email(varchars), password(varchars) at a minimum...
*/
$submit = $_POST['submit'];
if(isset($submit)) {
//grab the post info at login...
$email = mysql_real_escape_string($_POST['email']);
$password = mysql_real_escape_string($_POST['password']);
//md5 encryption at a minimum...
$password = md5($password);
//this is just to declare the timeframe for the cookie....
$remember = strip_tags($_POST['remember']);
//query the users table..
//for demo purposes, this is a basic where normally
//I would wrap this into a function.
$sql = mysql_query("SELECT * FROM users WHERE email='$email'");
$row = mysql_fetch_array($sql);
//set-up the userid for the cookie...
$userid = strip_tags($row['userid']);
//if user exists
if(mysql_num_rows($sql)>0){
//compare the password
if(strcmp($row['password'],$password)==0){
//set the cookie with the the userid...
if (isset($remember)) {
/* Set cookie to last 1 year */
$expire = time()+60*60*24*365;
setcookie('userid', $userid, $expire);
}
else {
/* Set cookie until the user logs out */
$expire = false;
setcookie('userid', $userid, false);
}
//send the user over to their secure account...
header('Location: your_secure_login_area.php');
/*
You would then add the following to the top of any secure page that would be applied to the end-user...
<?php
//you can now reference the userid for any db call...
$userid = $_COOKIE['userid'];
if (isset($userid)) {
}
else if(!isset($userid) || $userid == '' || $_GET['userid'] != $_COOKIE['userid']) {
header('Location: http://yourloginpage.php');
}
?>
*/
}
}
else {
$reponse = 'Error: Invalid Information.';
}
}
?>
答案 2 :(得分:0)
使用session或cookie来传递id。因为用户可以在表单提交之前始终篡改id名称并修改值。