In this:I'm trying to use a loop to eacho the node and name from my database and have tried doing it like so:PHP Code:
$ArraySearchString = array(
497024 => "Web Development",
229614 => "Graphics",
497022 => "Video & Music"
);
But I get a parse error on this row:PHP Code:
$ArraySearchString = array(
while($row = mysql_fetch_array($result1)){
echo($row['amazonid'] =>."".$row['name'].",");
}
);
Anyd ideas?PHP Code:
while($row = mysql_fetch_array($result1)){
Bookmarks