I have a special set of information retrieved from a while loop that I would
like a person to be able to edit and send back into a MySQL table.

I know all of the basic MySQL commands for doing such, but the PHP side to
get the input from the form to go in is really stumping me.

This is what I have:

---------------------

$or = 0;

while($or < $orderidrows) {

$orderinfo = mysql_fetch_row($orderidinfo);
$domain[$or] = $orderinfo[2];
$cancel[$or] = $orderinfo[3];

print "<tr><td><font size=2 face=Arial> $domain[$or]</font></td><td><font
size=2 face=Arial>Cancel This Domain?</font></td><td><font size=2
face=Arial><input type=text name=confirm value='$cancel[$or]'
size=3></font></td>";

$or++;
}

----------------------

The values/data I would normally insert into the MySQL from the form would be
$confirm, based on $domain - however, in this case, I have a number of rows
with the same
name. I've received help as far as distinguishing one row from another -
thanks.  :)

The problem I am really having is trying to insert the data back into one
particular table.  You see, when I select the data, I get multiple
orderid's with multiple domains attached to them.  When I try to UPDATE the
MySQL with the data, only the last orderid seems to be the one getting
updated.  And, to boot, I want to update based on the domain name (since
that is unique) and ignore the orderids.  I only used the orderids to pull
the data out.

So, I've been using a query like this in a loop;

$update = "UPDATE table2 SET cancel='$cancel[$a]' WHERE domain = $domain[$a]

Any suggestions?  I'm getting pretty desparate here!  :\

Thanks,

-Mike


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to