Copyright © 2005-2008 Andrea Tincani

AndreaPHP | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (Post your questions)Next Topic (Curiosity question...) New Topic New Poll Post Reply
AndreaPHP Forum : PHP General : For.. Each with two level array
Poster Message
neutrall
Level: Scholar


Registered: 28-03-2004
Posts: 43

icon For.. Each with two level array

Here's my problem, in my code, i'm parsing a ini file :


<?php $TplConfig parse_ini_file('templates/basic.ini'TRUE); ?>



Here's a example of the content of the css ini file :
[css_files]
file1=css/{race_name}.css
file2=css/layout.css
file3=css/common.css


One of the area in the parse ini file is a listing of css file, so I tried the folowing :


<?php
$CssInsert 
'';
foreach (
$CssPage as $TplConfig['css_files']) {
    
$CssInsert .= '<link rel="stylesheet" type="text/css" href="' $TemplateDir $CssPage '">';
    echo 
$TemplateDir $CssPage;
}
?>



I know I can acces them manually by calling directly to the item in the array :

<?php $TplConfig['css_files']['file1'] ?>

But I the ini can contain a unlimited amount of css file.

Can anyone help?

Daniel B.

____________________________
A Stick give a wise man something to think about... and a fool, something to put in is mouth.

26-06-2005 at 02:35 AM
View Profile Send Email to User Show All Posts Visit Homepage ICQ | Quote Reply
neutrall
Level: Scholar


Registered: 28-03-2004
Posts: 43

icon Re: For.. Each with two level array

I found the answer, I was reversing the order in the for .. each loop :

I did this :

<?php foreach ($CssPage as $TplConfig['css_files']) ?>




insteed of this :
<?php foreach ($TplConfig['css_files'] as $CssPage ?>





____________________________
A Stick give a wise man something to think about... and a fool, something to put in is mouth.

26-06-2005 at 05:38 PM
View Profile Send Email to User Show All Posts Visit Homepage ICQ | Quote Reply
AndreaPHP Forum : PHP General : For.. Each with two level array
Previous Topic (Post your questions)Next Topic (Curiosity question...) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: AndreaVB

Copyright © 2005-2008 Andrea Tincani

Powered by: tForum tForum Edition b0.92p1
Originally created by Toan Huynh (Copyright © 2000)
Enhanced by the tForumHacks team.