
krv
Members-
Posts
33 -
Joined
-
Last visited
Never
Profile Information
-
Gender
Not Telling
krv's Achievements

Newbie (1/5)
0
Reputation
-
im exporting from mssql 2000 sp4 to mysql 5 and having issues transforming these columns
-
what do these = in mysql? long varbinary numeric Thanks
-
Hello i am simply trying to show data in html table from one mysql table and subtract the remainders. This information is pulled from a table called original_invoice Structure: id, invoiceid, uid, qty1, qty2 etc. As you can see i have a select option, two textboxes and a check box. When you select and invoice and enter in a number in the textboxes and check the row where you just entered a number and click save, it will then post that information into a table called invoice_data. Structure: id, invoiceid, invoice_num, uid, qty1, qty2 etc. invoiceid is the numbers that in the original_invoice table. invoice_num is the selected invoice number that was posted along with the qty1,qty2 fields. In the code below i have multiple sql queries in place. After the section the post/inserts data into the invoice_data table i have a query that checks to see if any data is in the table where invoiceid='$_GET['invoiceid']'. if that results to 0 it simply pulls the data from the original_invoice table that creates the standard form that needs to be shown. ( look at the image for reference). If it does not: the quantity left fields are to tell me how many items are left. This works by adding up all the quantities found in invoice_data if anything exists then subtracts from the original_invoice table. The problem i am running into is if i only select one item on the form and insert it into the database. i will on see that item in the html table once the page refreshes. This happens due to the sql query i run if data is found in the invoice_data table where invoiceid='$_GET['invoiceid'] This makes sense because thats what code reads. but i need it to show the data from original_invoice but also do the subtraction without displaying the information in the invoice_data table. Sorry this is alot :/ <?php ///// this posts/inserts the data into the invoice_data table if (isset($_POST['save'])) { if ($_POST['checkbox'] == 0) { echo 'nothing checked.'; } else { // insert new qty's into database $postinvoice = $_POST['invoice']; // gets invoice number foreach ($_POST['checkbox'] as $id) { // create array to insert all checked rows $queries = array(); $poinsert = base64_decode($_POST['po']); $pid = $_POST['hidProductId'][$id]; $qty1 = $_POST['txtQty1'][$id]; $qty2 = $_POST['txtQty2'][$id]; // keep line items consistent $eno =0; if ($_POST['txtQty1'][$id] > 0 && $_POST['txtQty2'][$id] > 0) { $msg = 'Item quanity found in both columns on same line item.'; $eno = 1; } if (empty($_POST['txtQty1'][$id]) && empty($_POST['txtQty2'][$id])) { $msg = 'You did not enter a quanity'; $eno = 1; } if ($eno == '0') { $queries[] = "('$_GET[invoice]','$postinvoice','$_GET[uid]','$poinsert','$pid','$qty1','$qty2','1')"; $piece = implode(", ", $queries); $query1 = "INSERT INTO invoice_data (invoiceid,invoiced,uid,po,pid,qty1,qty2,status) VALUES $piece"; $result = mysql_query($query1) or die(mysql_error()); } if ($result) { $msg = "Added"; }else{ // if $eno=1 echo $msg; } } } } ?> <form method="post"> <tr> <td>part</td> <td>description</td> <td>price1</td> <td>price2</td> <td>qty1 remaining</td> <td>qty1 value</td> <td>qty2 remaining</td> <td>qty2 value</td> <td>save</td> </tr> <?php // check to see if there is any records for this invoice to determine which sql script is displayed // this script shows you remaing qty's by subtracting invoice_data qtys from the original_invoice qtys. // the purpose of this script generates backorders $checkID = "SELECT id,invoiceid FROM invoice_data WHERE invoiceid='$_GET[invoice]'"; $checkResult = mysql_query($checkID)or die(mysql_error()); if(mysql_num_rows($checkResult)=='0'){ // show the normal form to then input new values for qty's $sql = "SELECT original_invoice.id as id, original_invoice.invoiceid, original_invoice.pid as pid, original_invoice.qty1 as qty1, original_invoice.qty2 as qty2, customers.id as id, products.part as part, products.descr as descr, products.price1 as price1, products.price2 as price1 FROM original_invoice, customers, products WHERE customers.id='$_GET[uid]' AND original_invoice.invoiceid='$_GET[invoice]' AND original_invoice.cid='$_GET[uid]' AND original_invoice.pid = products.part"; $dataFound =0; // end check }else{ // else continue added quantity until items = 0 $sql = "SELECT original_invoice.id as id, original_invoice.invoiceid, original_invoice.invoiced, original_invoice.pid as pid, original_invoice.qty1 as qty1, original_invoice.qty2 as qty2, customers.id as id, products.part as part, products.descr as descr, products.price1 as price1, products.price2 as price1, invoice_data.qty1 as iqty1, invoice_data.qty2 as iqty2, invoice_data.pid as ipid, invoice_data.invoiceid as iinvoiceid, invoice_data.uid as iuid FROM original_invoice, customers, products, invoice_data WHERE customers.id='$_GET[uid]' AND original_invoice.invoiceid='$_GET[invoice]' AND original_invoice.uid='$_GET[uid]' AND original_invoice.pid = products.part AND invoice_data.pid = products.part AND original_invoice.pid=invoice_data.pid"; // invoiceid is the original cart or invoice id for the database. // invoiced is the new posted invoice number and is only in the invoice_data table. $dataFound=1; } $result = dbQuery($sql); while ($row = dbFetchAssoc($result)) { // count the remainders if($dataFound=='0'){ $qty1r = $row['qty1']; $qty2r = $row['qty2']; }else{ $qty1r = $row['qty1']-$row['iqty1']; $qty2r = $row['qty2']-$row['iqty2']; } echo " <tr> <td>$row[part]</td> <td>$row[descr]</td> <td>$row[price1]</td> <td>$row[price2]</td> <td>$qty1r></td> <td><input name=\"txtQty1[$row[part]]\" type=\"text\" size=\"3\" maxlength=\"3\"></td> <td>$qty2r</td> <td><input name=\"txtQty2[$row[part]]\" type=\"text\" size=\"3\" maxlength=\"3\"> <input name=\"hidProductId[$row[part]]\" type=\"hidden\" value=\"$row[part]\" /></td> <td><input type='checkbox' name='checkbox[]' value='$part' /></td> </tr> "; } ?> <input type="submit" name="save" value="save" /> </form>
-
Solution if (isset($_POST['scl']) && !empty($_POST['cs1'])) { if ($_POST['checkbox'] == 0) { $nc = " <span style=\"background-color: #fff1a8;\">No services selected</span>"; } else { foreach ($_POST['checkbox'] as $id) { $queries = array(); //for ($i = 0; $i < count($id); $i++) //{ // $cs2 = $_POST['cs2']; // $cs3 = $_POST['cs3']; // if (!get_magic_quotes_gpc()) //{ // $cs2[$i] = addslashes($cs2[$i]); // $cs3[$i][$id] = addslashes($cs3[$i]); //} //$ls = $id - 1; $itemId = $_POST['cs2'][$id]; $itemValue = $_POST['cs3'][$id]; $queries[] = "('$cs1 ','$itemId','$itemValue')"; //} $piece = implode(", ", $queries); $query = "INSERT INTO cust_services (cs1,cs2,cs3) VALUES $piece"; $result = mysql_query($query) or die(mysql_error()); $nc = "<span style=\"background-color: #fff1a8;\">Service Added</span>"; header("Refresh:0;URL=services?c=1"); } // end checkbox loop } } <?php $query = "SELECT id,s1,s2 FROM services"; $result = mysql_query($query) or die("Can't create query: " . mysql_error()); while ($row = mysql_fetch_array($result)) { echo " <tr style=\" background-color: #ffffff\" onMouseover=\"this.style.backgroundColor='lightblue';\" onMouseout=\"this.style.backgroundColor='white';\"> <td class='ul'>$row[s1]</td> <td class='ul'><input type=\"hidden\" name=\"cs2[$row[id]]\" value=\"$row[id]\"><input type=\"text\" name=\"cs3[$row[id]]\" value=\"\" /></td> <td><input type='checkbox' name='checkbox[]' value='$row[id]'></td> </tr>"; } ?>
-
Subtracting fails. still stuck
-
My error was in my for() loop. I was trying to have a list of items that pulled from a database display in a table. Within each row there would be a hidden field with an item id and a text field to enter in a value that associates with the item id. Then i wanted to be able to check which items i wanted to save and also store the value. I was having an issue inserting the Correct value with the item id. I fixed this by subtracting 1 or $i -1 due to an issue where the items and values would insert into the database but would be off by one. if (isset($_POST['scl']) && !empty($_POST['cs1'])) { if ($_POST['checkbox'] == 0) { $nc = " <span style=\"background-color: #fff1a8;\">No services selected</span>"; } else { foreach ($_POST['checkbox'] as $id) { $queries = array(); for ($i = 0; $i < count($id); $i++) { $cs1 = $_POST['cs1']; $cs2 = $_POST['cs2']; $cs3 = $_POST['cs3']; if (!get_magic_quotes_gpc()) { $cs2[$i] = addslashes($cs2[$i]); $cs3[$i] = addslashes($cs3[$i]); } $ls = $id -1; $queries[] = "('$cs1 ','$id','$cs3[$ls]')"; } $piece = implode(", ", $queries); $query = "INSERT INTO cust_services (cs1,cs2,cs3) VALUES $piece"; $result = mysql_query($query) or die(mysql_error()); // header("Refresh:0;url="); $nc = "<span style=\"background-color: #fff1a8;\">Service Added</span>"; } // end checkbox loop } } else { $nc = '<span style="background-color: #fff1a8;">Please select a facility</span>'; }
-
Refresh the page for new image. when i check the boxes that i want to insert into database i get the first line value and it duplicates.
-
Hello, I have a script that allows you to select line items(checkbox) that hold a product id (hidden field, cs2[]) and $ amount (text field, cs3[]). I try to pass the checked items with a foreach() function to then create an array of queries. All i get is the first text box 2x in the database. Any input is appreciated. Thanks. Example of script: if (isset($_POST['scl']) && !empty($_POST['cs1'])) { if ($_POST['checkbox'] == 0) { $nc = "<span style=\"background-color: #fff1a8;\">No services selected</span>"; } else { foreach ($_POST['checkbox'] as $id) { $queries = array(); for ($i = 0; $i < count($id); $i++) { $cs1 = $_POST['cs1']; $cs2 = $_POST['cs2']; $cs3 = $_POST['cs3']; if (!get_magic_quotes_gpc()) { $cs2[$i] = addslashes($cs2[$i]); $cs3[$i] = addslashes($cs3[$i]); } $queries[] = "('$cs1 ','$cs2[$i]','$cs3[$i]')"; } $piece = implode(", ", $queries); $query = "INSERT INTO cust_services (cs1,cs2,cs3) VALUES $piece"; $result = mysql_query($query) or die(mysql_error()); // header("Refresh:0;url="); $nc = "<span style=\"background-color: #fff1a8;\">Service Added</span>"; } // end checkbox loop } } else { $nc = '<span style="background-color: #fff1a8;">Please select a facility</span>'; }
-
solution $number_of_thumbs_in_row = 3; $result = mysql_query(" SELECT id,name, FROM img "); $nr = mysql_num_rows($result); if (empty($nr)) $result_final = "\t<tr><td>No images found</td></tr>\n"; else { while ($row = mysql_fetch_array($result)) { $result_array[] = "<img src=\"images/$row[name]\" border=\"0\" />"; } mysql_free_result($result); $result_final = "<tr>\n"; foreach ($result_array as $thumbnail_link) { if ($counter == $number_of_thumbs_in_row) { $counter = 1; $result_final .= "\n</tr>\n<tr>\n"; } else $counter++; $result_final .= "\t<td class=\"appdata-image-ol\">" . $thumbnail_link . "</td>\n"; } if ($counter) { if ($number_of_photos_in_row - $counter) $result_final .= "\t<td colspan='" . ($number_of_photos_in_row - $counter) . "'> </td>\n"; } $result_final .= "</tr>"; } echo $result_final;
-
how reliable is this and is there a better solution to guarantee the last id inserted in a multi user insert process Thanks
-
ugh messy. $query = " SELECT Pname,Uname,PText,URL FROM liefde ORDER BY PName DESC"; why do you have 2 whiles if its same table?
-
POSTS id, title, description, userid $SQL = "SELECT * FROM posts WHERE id='$_GET[id]''; REPLIES id, post_id,description,userid $SQL = "SELECT * FROM replies WHERE post_id='$_GET[id]''; try something like that. if no users then dump userid