ID: 14273
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: URL related
Operating System: Linux
PHP Version: 4.0.6
New Comment:

Um ... list($name$url) looks really weird to me. You should write list($name, $url) 
instead.

Can you reproduce this with latest (not official) release?

http://www.php.net/~zeev/php-4.1.0.tar.gz

Also, the actual content of '$url' would be interesting anyway (since coredump is 
never ok), something like 'var_dump($url);' before passing it to urlencode().

Feedback.

Previous Comments:
------------------------------------------------------------------------

[2001-11-28 17:23:08] [EMAIL PROTECTED]

This works!!!

$cnt = count($arrayA);
for ( $ix=0 ; $ix < $cnt; $ix++ ) 
{
       $aurl = mysql_query("select name, url from sites where 
code='".$arrayA[$ix][1]."'");
       list($name$url) = mysql_fetch_row($aurl);
       mysql_free_result($aurl);

       echo "$url $name";
}

This Fails!!
$cnt = count($arrayA);
for ( $ix=0 ; $ix < $cnt; $ix++ ) 
{
       $aurl = mysql_query("select name, url from sites where 
code='".$arrayA[$ix][1]."'");
       list($name$url) = mysql_fetch_row($aurl);
       mysql_free_result($aurl);

       echo urlencode($url)," $name";
}

Only change is addition of urlencode,  What gives?

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=14273&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to