Jump to content

[SOLVED] MySQL Update Query problem


psychowolvesbane

Recommended Posts

  • Replies 54
  • Created
  • Last Reply

EUREKA! I got it!

 

Thanks to you I got the sudden idea to put the $a = into an If statement that worked one variable setting when the page loads and a separate one after Submit was pressed:

 

<?php
session_start();

//get current type selected
if($_POST['SubmitB'] != "Submit")
{ 
   $a = $_GET['EditThisItemType'];
}
else
{
   $a = $_SESSION['Type'];
}

// store session data
$_SESSION['Type']=$a;

echo $_SESSION['Type'];
echo "<br>";
echo $a;
echo "<br>";

$Submit = $_POST['SubmitB'];
$ItemType = $_POST['ItemType'];

 

The code now works and the update works perfectly too!!!

Oh that's nothing I got to do the same thing but with a bigger form and more inputs! I've gotten a Delete, Add and Edit feature working with the Item Type pages, now I need to do an Add and Edit for the Products, which I'm sure I'll be needing help on soon enough.

 

Thanks for your help!

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.