including 1 file among 2 file?

ameplyspelync

New Member
I do apologize for asking this stupid question but I am wondering if you can help me..i want insert among file $cat1 or $cat2 to in page.php...the code i was create e.g.\[code\]<? //config.php$cat_all = ($cat2 or $cat1);$cat1 = "cat.php" ;$cat2 = "../back-up/cat.php"; //default anywayif(file_exists($cat1)){ require_once $cat1;}else{ require_once $cat2;}?><? //page.phprequire "config.php";function ShowIndexProd($number){ $ar = file($cat_all); // <------- input here // $sizear = count($ar)-$number; $data = http://stackoverflow.com/questions/2115442/explode("#",$ar[$sizear]); echo " <td class='BoxIndex' width='30%'><a href='http://stackoverflow.com/questions/2115442/prod_show.php?id=$sizear'><IMG SRC='http://stackoverflow.com/questions/2115442/img/$data[5]' width=150 border=0></a> <BR /><BR /> <B><FONT COLOR='red'> $deti[2] </FONT></B> <BR /> <B>Price:</B>$rp $data[3] $usd<BR /> <a href='http://stackoverflow.com/questions/2115442/prodshow.php?id=$sizear'><b><FONT COLOR='#FF6600'> more details... </FONT></b></a> </td>";}\[/code\]but the result: file $cat1 or $cat2 printed to html page, that i want them as file configuration..any help would much appreciate and thank you
 
Back
Top