lehrnroo Posted June 1, 2010 Share Posted June 1, 2010 Hi everyone. I'm new to PHP and would like to know what's wrong with my arrays. I'm trying to create a simple web site with PHP. The code below works reasonably well in Explorer but doesn't work in Firefox. It's probably very easy to fix but I just don't understand how to do it. The error message that I get is Warning: Invalid argument supplied for foreach() in /home/customers/helisto/public_html/index.php on line 83 Here's the entire code: <? $rakenne = array( 'Aloita tästä' => array( 'Toimisto ja yhteystiedot', 'Henkilökunta', 'Vesivahingot ja muut vahingot', 'Huoneistojen muutostyöt', 'Kokemusta korjausrakentamisesta', 'Isännöitsijäntodistukset ja asiapaperit', 'Hinnasto ja toimitusajat', 'Tarjouspyyntö ja Helisto-Palvelupaketit' ), 'Historia' => array( 'Historia' ), 'ISA' => array( 'ISA' ), 'Uusi asunto-osakeyhtiölaki' => array( 'Uusi asunto-osakeyhtiölaki' ) ); // 'Asumis-info' => array( 'Ajankohtaista', 'Remontointi', 'Linkit' ), if( !IsSet($_GET['osio']) ) $osio = 'Aloita tästä'; else $osio = $_GET['osio']; if( !IsSet($_GET['sivu']) ) $sivu = $rakenne[$osio][0]; else $sivu = $_GET['sivu']; ?> <? function fname( $s ) { $replace = array( ' ' => '+', 'ä' => 'a', 'ö' => 'o', 'å' => 'a' ); $s = strtolower( $s ); foreach( $replace as $from => $to ) $s = str_replace( $from, $to, $s ); return( $s ); } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Helsingin Isännöitsijätoiminta Oy</title> <meta name="description" content="Yrityksemme on yksityinen keskisuuri isännöintiyritys, jolla on toimitilat Töölössä – Helsingin ytimessä." /> <meta name="keywords" content="isännöitsijätoimisto, isännöinti, liikeisännöinti, Helisto, helisto, Mechelininkatu 11, Töölö, Töölön isännöinti, Töölön isännöintitoimistot, ISA, auktorisoitu, isännöitsijätoimisto, auktorisoitu isännöitsijäyhteisö, isännöitsijätoimistot Helsingissä, Helsingin isännöitsijätoimisto, isännöitsijät Helsingissä, Helsingin isännöitsijät, isännöitsijäntodistus, remontti-ilmoitus taloyhtiölle" /> <meta name="robots" content="INDEX, FOLLOW" /> <meta name="googlebot" content="isännöitsijätoimisto, isännöinti, liikeisännöinti, Helisto, helisto, Mechelininkatu 11, Töölö, Töölön isännöinti, Töölön isännöintitoimistot, ISA, auktorisoitu, isännöitsijätoimisto, auktorisoitu isännöitsijäyhteisö, isännöitsijätoimistot Helsingissä, Helsingin isännöitsijätoimisto, isännöitsijät Helsingissä, Helsingin isännöitsijät, isännöitsijäntodistus, remontti-ilmoitus taloyhtiölle" /> <meta name="author" content="Helsingin Isännöitsijätoiminta Oy" /> <meta name="language" content="fi" /> <meta name="google-site-verification" content="KBwaLO4vC8SRrNnHU_a2RREipgRQDVUUmxHwShfrimw" /> <link rel="stylesheet" type="text/css" href="./helisto.css"> </head> <body topMargin="0" leftMargin="0" rightMargin="0" bottomMargin="0" marginWidth="0" marginHeight="0" bgcolor="#FFFBF5"> <MAP NAME="bmap"> <AREA SHAPE=RECT COORDS="52,10,154,25" HREF="mailto:[email protected]"> <AREA SHAPE=RECT COORDS="57,26,147,39" HREF="/"> <!-- <AREA SHAPE=default HREF="."> --> </MAP> <table border="0" width="100%" height="90%"> <tr> <td valign="middle" align="center"> <!-- CONTENTS STRUCTURE :: START --> <table border="0" width="750" height="500" cellpadding="0" cellspacing="0" bgcolor="white" style="border: solid black 1px;"> <tr><td valign="top" width="126"> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="left"> <tr><td height="162" valign="top"><img src="./gfx/<?=fname($osio) ?>.jpg" border="0"></td></tr> <tr><td valign="top"> <table border="0" width="100" cellspacing="0" style="margin-left: 15px"> <? $i = 0; foreach( $rakenne[$osio] as $nimi ) { echo( "<tr><td background=\"./gfx/menu-" . ($i++) . ".gif\" height=\"40\" " . "><a href=\"./index.php?osio=$osio&sivu=$nimi\" class=\"" ); if( $nimi == $sivu ) echo( "menusel" ); else echo( "menu" ); echo( "\">$nimi</a></td></tr>" ); } ?> </table> </td></tr> <tr> <td valign="bottom"><img src="./gfx/menu-bottom.gif"><br> <img src="./gfx/bottom-left.gif"></td> </tr> </table> </td><td width="560" valign="top"> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"> <tr><td background="./gfx/topright.jpg" height="124" valign="bottom"> <? $first = true; foreach( $rakenne as $osionimi => $osiotaulukko ) { if( $first ) $first = false; else echo( "\n||||\n" ); echo( "<a href=\"./index.php?osio=$osionimi\" class=\"" ); if( $osio == $osionimi ) echo( "menusel" ); else echo( "menu" ); echo( "\">$osionimi</a>" ); } ?> </td> </tr> <tr><td height="520"> <!-- PAGE CONTENTS :: START --> <iframe src="./sivut/<?=fname($sivu) ?>.php" width="560" height="100%" marginheight="20" marginwidth="15" align="justify" frameborder="0" style="color: #832A06;"></iframe> <!-- PAGE CONTENTS :: END --> </td></tr> </table> </td></tr> <tr><td colspan="2" align="right"><img src="gfx/copyright kuvat/copyright.gif" alt="Copyright Helisto" width="145" height="57" align="left"><img src="./gfx/bottom.gif" border="0" usemap="#bmap"></td> </tr> </table> <!-- CONTENTS STRUCTURE :: END --> </td> </tr> </table> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/203504-warning-invalid-argument-supplied-for-foreach-in/ Share on other sites More sharing options...
Adam Posted June 1, 2010 Share Posted June 1, 2010 How are you calling the script? My guess would be that the key you're passing into $rakenne[$osio] contains characters IE can't handle through the URL. And/or have you dumped out the value of $osio to make sure it's what you're expecting? I'd reccomend adding in an array_key_exists check before blindly trying the loop too. Quote Link to comment https://forums.phpfreaks.com/topic/203504-warning-invalid-argument-supplied-for-foreach-in/#findComment-1066077 Share on other sites More sharing options...
lehrnroo Posted June 2, 2010 Author Share Posted June 2, 2010 Thanks MrAdam for such a quick reply. I should test the loop with array_key_exists(). Are there any good open source PHP programmes that are designed for testing code? I've used Python before (with the IDLE gui) but I'm not aware of any corresponding programme for PHP. Do you happen to now any good ones? Quote Link to comment https://forums.phpfreaks.com/topic/203504-warning-invalid-argument-supplied-for-foreach-in/#findComment-1066541 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.