eply-To: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: RE: [PHP-DB] Changing this php code to show multiple variables!
Date: Wed, 20 Oct 2004 12:10:42 -0500
I don't pretend to know flashes interface, as I said before - but instead
of naming the variables differently - you
http://flashkit.com/board/showthread.php?s=95608f8e3b6478833f8e42171424bf7f&threadid=505071&highlight=pass+php+array
is a discussion about php and flashthe poster 'argonauta' recommend the
use of xml, otherwise the solution is to use individual elements for key
value pair
bastien
From: Juan
I don't pretend to know flashes interface, as I said before - but instead of naming
the variables differently - you should be able to pass them in an array.
&Lastname0=craw&Firstname0=david&Lastname1=Zarlanga&Firstname1=John
becomes
&Lastname[]=craw&Firstname[]=david&Lastname[]=Zarlanga&Firstname
Are you writting the flash side too?
You could just return a multi-dimensional array?
$result = mysql_query();
$count = 0;
while($row = mysql_fetch_row($result)
{
$ret[$count] = $row;
$count++;
}
return $ret;
- Original Message -
From: Juan Stiller <[EMAIL PROTECTED]>
Date: Wednesda