/    Sign up×
Community /Pin to ProfileBookmark

Editing MySql results array problem

Basically what I want to do is edit the results array that gets returned after a MySql call. Here is what I am currently doing:

[code=php]
while($myrow = mysql_fetch_array($result))
{
$zipcode = $myrow[‘Zip’];
$miles = $zips[$zipcode]; // returns how far the zipcode is from the destination
$result[$count][‘Zip’] = $miles;
$count++;
}
[/code]

I get the PHP error messager “Warning: Cannot use a scalar value as an array” when executing this code because apparently $result isn’t an array. Any advice?

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@themartyJun 03.2009 — Not only is $result not an array, it's also the variable with a pointer to the resultset: if you would overwrite it the while-loop would quit after just one iteration. So, before the while-loop, initiate a new array like this:
[code=php]$someNameThatMakesSenseArray = array();[/code]
And use that one to store the information.

So, something like this:

[code=php]$someNameThatMakesSenseArray = array();
$count = 0;
while($myrow = mysql_fetch_array($result))
{
$someNameThatMakesSenseArray[$count++] = array(
"Zip" = $zips[$myrow['Zip']];
);
}[/code]


Btw, count doesn't really do anything extra here. You could also write this as:

[code=php]$someNameThatMakesSenseArray = array();
while($myrow = mysql_fetch_array($result))
{
$someNameThatMakesSenseArray[] = array(
"Zip" = $zips[$myrow['Zip']];
);
}[/code]
×

Success!

Help @Barley spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.27,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...