Inserting a number into a list & moving all other numbers down

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
I'd like your opinion as to whether you think this code is reasonable, or if
there is a better way to do this...

I'd like to insert data in a particular order, so that i would take this eg:
  num      val
  1        x
  2        y
  3        z

and insert "a" as number 2 (from 2 text boxes), so the resulting list would
end up:
  num      val
  1        x
  2        a
  3        y
  4        z


suedo-code so far is:
(i haven't proof read this or tested it yet...)

$num_insert = $_GET(num_insert);
$val_insert = $_GET(val_insert);
$result = mysql_query(SELECT num FROM table);
$num_rows = mysql_num_rows($result);
while($num_rows >= $num_insert){
  mysql_query(UPDATE table SET num='$num+1' val='$val');
  $num--;
}
UPDATE table SET num='$num_insert' val='$val';


Cheers,
Gav


This e-mail and any attachments are intended solely for the named addressee,
are confidential and may contain legally privileged information. 

The copying or distribution of them or of any information they contain, by
anyone other than the addressee, is prohibited. If you received this e-mail
in error, please notify us immediately by return e-mail or telephone +61 2
9413 2944 and destroy the original message. Thank you. 

As Email is subject to viruses we advise that all Emails and any attachments
should be scanned by an up to-date Anti Virus programme automatically by
your system. It is the responsibility of the recipient to ensure that all
Emails and any attachments are cleared of Viruses before opening. KSG can
not accept any responsibility for viruses that maybe contained here in.
Please advise KSG by return Email if you believe any Email sent by our
system may contain a virus. It should be noted that most Anti Virus
programmes can not scan encrypted file attachments (example - documents
saved with a password). Thus extra care should be taken when opening these
files. 

Liability limited by the Accountants Scheme, approved under the Professional
Standards Act 1994 (NSW). 



Level 4 
54 Neridah Street                PO Box 1290 
CHATSWOOD   NSW   2067           CHATSWOOD   NSW   2057 


Ph: +61 2 9413 2944              Fax: +61 2 9413 9901

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux