Jump to content

[SOLVED] _GET Array??


Halisco

Recommended Posts

I hope i can explain this clearly.  What i am doing is sending serveral <input> values using the  <form method="get"> metohd.  Its placing all my input vaues into the URL and i am taking that data and entering it into a databasae.  What i am wondering is if i can somehow get the info from the URL into an array.  The URL Looks like this:

 

http://localhost/profile.php?ID=3096&EditSection=Personal&FirstName=Dion&LastName=Simons&AccountNum=549382

 

 

Here is my script:

 

function UpdateInfo()
{

$con = mysql_connect("Host","User","Password");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("DbName", $con);

mysql_query("UPDATE Table1 SET FirstName = '$_GET[FirstName]' WHERE ID = '$_GET[iD]'");
mysql_query("UPDATE Table1 SET LastName = '$_GET[LastName]' WHERE ID = '$_GET[iD]'");
mysql_query("UPDATE Table1 SET AccountNum= '$_GET[AccountNum]' WHERE ID = '$_GET[iD]'");

mysql_close($con);
}

 

As you can see all of the database fields have the same name as the _GET fields.  Im trying to take the array created from the URL to use in thie function so i dont have to put a line of script for each field/_Get value.  Can anyone help me out?  I have not idea where to start with this one.  Oh by the way these are not all the fields i am using there are over 30.  I just used 3 to keep the post small.

Link to comment
Share on other sites

1. Passing variables from GET directly into query is asking for SQL injection. Use at least mysql_real_escape_string to escape potentially malicious data.

2. You can use UPDATE table1 SET col1 = value1, col2=value2, ... coln = valuen WHERE ...

 

$FirstName = mysql_real_escape_string($_GET[FirstName]);
$LastName = mysql_real_escape_string($_GET[LastName]);
$AccountNum= mysql_real_escape_string($_GET[AccountNum]);
$ID = mysql_real_escape_string($_GET[iD]);

mysql_query("UPDATE Table1 SET FirstName = '$FirstName', LastName = '$LastName', AccountNum= '$AccountNum' WHERE ID = '$ID'");

Link to comment
Share on other sites

Assuming ALL of your column names are the same as the GET variables names, you can use something like this if you don't know which variables you're going to be getting:

 

foreach($_GET as $key => $value) {
   $sql = "UPDATE Table1 SET $key = '$value' WHERE ID = '{$_GET[iD]}'";
   $result = mysql_query($sql) or die(mysql_error());
}

 

$key = name of the GET var

$value = value of the GET var

Link to comment
Share on other sites

You can use PHP to create the query for you:

 

<?php
$qtmp = array();
foreach ($_GET as $fld => $val)
    if ($fld != 'Submit' && $fld != 'ID') // or whatever your submit button is named
          $qtmp[] = $fld . " = '" . mysql_real_escape_string(trim(stripslashes($val))) . "'";
$query = 'UPDATE Table1 SET ' . implode(', ',$qtmp) . " where ID = '" . mysql_real_escape_string($_GET['ID']) . "'";
$rs = mysql_query($query) or die("Problem with the query: $query<br>" . mysql_error());
?>

 

Ken

Link to comment
Share on other sites

You can use PHP to create the query for you:

 

<?php
$qtmp = array();
foreach ($_GET as $fld => $val)
    if ($fld != 'Submit' && $fld != 'ID') // or whatever your submit button is named
          $qtmp[] = $fld . " = '" . mysql_real_escape_string(trim(stripslashes($val))) . "'";
$query = 'UPDATE Table1 SET ' . implode(', ',$qtmp) . " where ID = '" . mysql_real_escape_string($_GET['ID']) . "'";
$rs = mysql_query($query) or die("Problem with the query: $query<br>" . mysql_error());
?>

 

Ken

 

 

Exactly what i was looking for  ;D!!!!

 

Thankyou very much!!!!

Link to comment
Share on other sites

Still this is a potential security vulnerability. It's enough to put a field that's not a column name into url, and the query will fail (additionally echoing it in the error message).

In my opinion, there should be check for proper column names (using in_array for example)

Link to comment
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.