Re: updating multi row after fetch...include my query script

2005-04-15 Thread Aji Andri
I'm sorry. the method that I use is post that each value is define by a variable, but the looping proses make it only there only one variable for each row and each column. so..still a dead and for me >>> please refer to the web page view _

Re: updating multi row after fetch...include my query script

2005-04-15 Thread SGreen
Aji Andri <[EMAIL PROTECTED]> wrote on 04/15/2005 03:49:52 PM: > this is my prosedure > 1st. I'm, selecting base on std_nis=111 in > STY_RANK_200501 > 2nd. looping and fetching echoing > looping and fetching echoing >while ($nline = mysql_fetch_array($result)) { >echo $nl

Re: updating multi row after fetch...include my query script

2005-04-15 Thread Aji Andri
this is my prosedure 1st. I'm, selecting base on std_nis=111 in STY_RANK_200501 2nd. looping and fetching echoing looping and fetching echoing while ($nline = mysql_fetch_array($result)) { echo $nline["std_value"] echo $nline["std_item"] } - end looping and fetch

Re: updating multi row after fetch...include my query script

2005-04-15 Thread Aji Andri
my looping in my first script, from table STY_REPORT_200501 I'm including the value -1st query (looping)- $query = "select a.*, b.sty_descr as styname from STY_REPORT_200501 a left join STY_ITEM b on a.std_item=b.sty_code where a.std_nis=111 -end looping the result is

Fw: updating multi row after fetch...include my query script

2005-04-15 Thread SGreen
(You always need to include the list on all responses. In this case, I do not work in PHP enough to be able to help with this particular problem but I know there are several PHP experts on the list.) -- SG - Forwarded by Shawn Green/Unimin on 04/15/2005 02:38 PM - Aji Andri <[EMAIL PROTE

Re: updating multi row after fetch...include my query script

2005-04-15 Thread Aji Andri
I'm sorry if I didn't make it so clear, here is what I'm doing, ---script start here--- $query = "select a.*, b.sty_descr as styname from STY_REPORT_200501 a left join STY_ITEM b on a.std_item=b.sty_code where a.std_nis=" . $stid; $result = mysql_query($query)