Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Palbin
Site Admin



Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania

PostPosted: Fri Nov 28, 2008 3:37 pm Reply with quote

Any idea on how i can rewrite the below code so that when the "while loop" hits the offset in the array that does not exist, to stop the loop, it does not through a notice? (Notice: Undefined index: block_7 in /****/blocks/block-nxp_online.php on line 77)

At first I though a FOR LOOP but I don't know how to count the nxp_online_config["block_" . $block_count] because there are othe things in the array other than block_" . $block_count and thos are all I want.

Code:


$block_count = 1;

while($nxp_online_config["block_" . $block_count] != ""){
   unset($nxp_online_this_block, $nxp_online_this_perm, $block_file);
   
   $nxp_online_this_block = $nxp_online_config["block_" . $block_count];
   $nxp_online_this_perm = $nxp_online_config["block_" . $block_count . "_perm"];
   $block_file = "blocks/nxp_online/nxp_online_" . strtolower($nxp_online_this_block) . ".php";
   
   if (($nxp_online_this_block != "none" || $nxp_online_this_block != "") && file_exists($block_file))
   {
      if ($nxp_online_this_perm == "all" || $nxp_online_this_perm == "mem" && is_user($user) || $nxp_online_this_perm == "adm" && is_admin($admin))
      {
         $content .= "   <tr>\n";
         $content .= "      <td align='left' valign='middle'>\n";
                     include_once($block_file);
         $content .= "      </td>\n";
         $content .= "   </tr>\n";
      }
   }
   
   $block_count++;
}   


Last edited by Palbin on Fri Nov 28, 2008 5:00 pm; edited 1 time in total 
View user's profile Send private message
fkelly
Former Moderator in Good Standing



Joined: Aug 30, 2005
Posts: 3312
Location: near Albany NY

PostPosted: Fri Nov 28, 2008 4:37 pm Reply with quote

Still don't see why you can't use a foreach loop. Just access those elements within it that you are interested in and ignore the rest, no? Either that or test for the array length.
 
View user's profile Send private message Visit poster's website
Palbin







PostPosted: Fri Nov 28, 2008 4:57 pm Reply with quote

I'd rather not loop through the entire array.

Array length is no good because there can be elements other than block_* elements.

I guess I can loop through the entire array, but anyone else have any other ideas?
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Sat Nov 29, 2008 1:23 am Reply with quote

Use an isset() check first, then you won't get the warning

_________________
- Only registered users can see links on this board! Get registered or login! -

Need help? Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
Palbin







PostPosted: Sat Nov 29, 2008 3:17 pm Reply with quote

Thanks, I will give that a try.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©