Walker33 Posted May 26, 2009 Share Posted May 26, 2009 Hi. When updating my row with two variables, the order ' ".$reso.",".$licen." ' works perfectly fine. But when I flip them to ' ".$licen.",".$reso." ' it only updates the $licen variable and ignores the $reso. $licen is a string consisting of, say, S01,S02,S03,R01,R02,R03 . $reso returns a single variable, in this case S04. So I want the row to update to S01,S02,S03,R01,R02,R03,S04 (S04 at the end). But I can only manage to get it to update to S04,S01,S02,S03,R01,R02,R03 (S04 at the beginning). Any ideas? <?php $que = pg_query("SELECT sublicenses FROM sublicenses WHERE license = '$striplic'"); $getarr = pg_fetch_assoc($que); $licen = $getarr['sublicenses']; $string="$licen"; $domain3=strrchr($string,"S"); $string2=split(",",$domain3); $res = $string2['0']; $number = (int) $res[2]; $new_number = $number+1; $reso = substr_replace($res, $new_number, 2); $intosubs2 = pg_query ("UPDATE sublicenses SET sublicenses = ' ".$reso.",".$licen." ' WHERE license = '$striplic' "); ?> So code above works fine. Don't understand why I can't flip the $reso $licen over to $licen $reso. Would really appreciate any help. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/ Share on other sites More sharing options...
virtuexru Posted May 26, 2009 Share Posted May 26, 2009 Why don't you format them together BEFORE the query? example: <?php $newstring = $licen.",".$reso; ?> Then when you put it in make sure its <?php SET sublicenses = '$newstring' WHERE .... etc ?> Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/#findComment-842607 Share on other sites More sharing options...
Walker33 Posted May 26, 2009 Author Share Posted May 26, 2009 hmm. Yes that should work, but it didn't. I echoed that, and I got: S01,S02,S03,S04,R01,R02 ,S05 So what I'm noticing is that there is an additional space after R02. Maybe that's the issue somehow, that additional space in my $licen variable? Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/#findComment-842613 Share on other sites More sharing options...
redarrow Posted May 26, 2009 Share Posted May 26, 2009 str_replace(" ","",$value): as advised above post trim better. Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/#findComment-842614 Share on other sites More sharing options...
virtuexru Posted May 26, 2009 Share Posted May 26, 2009 hmm. Yes that should work, but it didn't. I echoed that, and I got: S01,S02,S03,S04,R01,R02 ,S05 So what I'm noticing is that there is an additional space after R02. Maybe that's the issue somehow, that additional space in my $licen variable? OK, that's fine. Better than before! Now just use trim() or str_replace(). Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/#findComment-842618 Share on other sites More sharing options...
Walker33 Posted May 26, 2009 Author Share Posted May 26, 2009 HA! That was it. Perfect. Thanks so much for the advice! Quote Link to comment https://forums.phpfreaks.com/topic/159757-solved-variable-order-in-update/#findComment-842627 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.