[PHP] setting $var= multiple $var's

2001-03-28 Thread Peter Houchin
hiya, What is the best way to get set this to one value? $system=$myrow['system']; $serial=$myrow['serial']; $config"=$myrow['config']; $avail=$myrow['avail']; $quote=$myrow['quote']; $name=$myrow['name']; $srep=$myrow['srep']; $custname=$myrow['custname']; $comp=$myrow['comp'];

Re: [PHP] setting $var= multiple $var's

2001-03-28 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] ("Peter Houchin") wrote: What is the best way to get set this to one value? $system=$myrow['system']; $serial=$myrow['serial']; $config"=$myrow['config']; snip much more of the same extract($myrow); Done. :-) See