show/hide this revision's text 3 added 194 characters in body

I have a variable $params which gets data from the database:

$params = mssql_fetch_array($result)

As far as I know, it is associative array. I want another array $tempParams to hold the value of this array. Can I assign it by using the following statement:

$tempParams = $params

In addition, do I need one single statement to declare and assign a value to $tempParams, or can these be separated?

One more question I would like to ask is that following statement is correct; While $tempParams contains values;

$params['column1'] = $tempParams['newColumns']
show/hide this revision's text 2 deleted 80 characters in body

I have on a variable name $params which get gets data from the database:

$params = mssql_fetch_array($result)

As far as I know, it is associativer associative array,. I want another array $tempParams to hold the value of this array.

$tempParams
Can I assign it by using the following statement?:

$tempParams = $params

My another question is that

In addition, do I need one single statement to declare and assign a value in to $tempParams, which I did in following snippets.

$tempParams = $params
or can these be separated?

show/hide this revision's text 1

Assign value from one associative array of php into another array

I have on variable name $params which get data from database

$params = mssql_fetch_array($result)

As far as I know, it is associativer array,

I want another array to hold the value of this array.

$tempParams

Can I assign it by using following statement?

$tempParams = $params

My another question is that do I need one single statement to declare and assign value in $tempParams, which I did in following snippets.

$tempParams = $params