Jump to content

Recommended Posts

Is it possible to replace fields using a form, but if a field in the form is left blank not to replace the original data.

 

For instance

 

When you 1st enter the data you enter your name, email address, score

 

then want to chane your email address and score

 

then just change your score without deleting your old email address?

Link to comment
https://forums.phpfreaks.com/topic/153527-replace-question/
Share on other sites

Thanks,

 

can you provide an example or further reading?

 

Currently I have this:

 

<?php
//Start session
session_start();

//Include database connection details
require_once('include/database.php');

//Array to store validation errors
$errmsg_arr = array();

//Validation error flag
$errflag = false;


//Function to sanitize values received from the form. Prevents SQL injection
function clean($str) {
	$str = @trim($str);
	if(get_magic_quotes_gpc()) {
		$str = stripslashes($str);
	}
	return mysql_real_escape_string($str);
}

//Sanitize the POST values
$banddataid = $_SESSION['SESS_USERID'];
$bandname = $_SESSION['SESS_BANDNAME'];

$genre = clean($_POST['genre']);
$formed = clean($_POST['formed']);
$member0 = clean($_POST['member0']);
$member1 = clean($_POST['member1']);
$member2 = clean($_POST['member2']);
$member3 = clean($_POST['member3']);
$member4 = clean($_POST['member4']);
$member5 = clean($_POST['member5']);
$position0 = clean($_POST['position0']);
$position1 = clean($_POST['position1']);
$position2 = clean($_POST['position2']);
$position3 = clean($_POST['position3']);
$position4 = clean($_POST['position4']);
$position5 = clean($_POST['position5']);


  

//Input Validations


if($formed == '') {
	$errmsg_arr[] = 'Year Formed is Missing';
	$errflag = true;
}



$sql = mysql_query("SELECT * FROM banddata WHERE userid = '$banddataid'");
if(mysql_num_rows($sql) == 0)
{
   //Create INSERT query
   $qry = "INSERT INTO banddata
   (userid, bandname, genre, formed, position0, member0, position1, member1, position2, member2, position3, member3, position4, member4, position5, member5) 
   
   VALUES
   ('$banddataid','$bandname','$genre', '$formed', '$position0', '$member0','$position1', '$member1', '$position2', '$member2','$position3', '$member3','$position4', '$member4', '$position5', '$member5')";
}
else
{
   //Create update query
   $qry = "UPDATE banddata SET 
   banddataid = '$banddataid, 
   bandname = '$bandname', 
   genre = '$genre',
   formed = '$formed', 
   position0 = '$position0',
   member0 ='$member0',
   position1 = '$position1',
   member1= '$member1',
   position2 = '$position2',
   member2 = '$member2',
   position3 = '$position3',
   member3 ='$member3',
   position4 = '$position4', 
   member4 ='$member4',
   position5 = '$position5',
   member5 = '$member5'
   WHERE userid = '$banddataid'";
}

  $result = mysql_query($qry);
    
   //Check whether the query was successful or not
   if($result) {
      header("location: member_home.php");
      exit();
   }else {
      die(mysql_error());
      
   }
   
   ?>

Link to comment
https://forums.phpfreaks.com/topic/153527-replace-question/#findComment-806696
Share on other sites

sample code

<?php
function my_escape($string)
{
    return is_int($string)?$string:("'" .mysql_real_escape_string($string) . "'");
}

$updates=array();
$fields=array('username','password','email','im');

foreach($fields as $field)
{
    if(isset($_POST[$field]) && !empty($data=trim($_POST[$field])))
       $updates[$field]=$data
}

$update_fields=array_keys($updates);
$values=implode(',',array_map('my_escape',$updates));
$fields=implode(',',$update_fields);

$query = "UPDATE users ({$fields}) VALUES({$values}) WHERE id={$id}";

 

Work through the logic :) You will get it :)

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/153527-replace-question/#findComment-806704
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.