"harry_potter", Worth => "1", Num => "20", Row => "5", Puzzle => "no"), array(Name => "ron_weasley", Worth => "1", Num => "20", Row => "5", Puzzle => "no"), array(Name => "hermione_granger", Worth => "1", Num => "20", Row => "5", Puzzle => "no"), array(Name => "champions", Worth => "2", Num => "16", Row => "4", Puzzle => "yes"), ); // Enter your mastered sets below. Follow the same format as above. Add or delete as many lines as you want. $mastered = array( array(Name => "albus_dumbledore", Worth => "1", Num => "20", Row => "5", Puzzle => "no"), array(Name => "severus_snape", Worth => "1", Num => "20", Row => "5", Puzzle => "no"), ); // The directories where your cards are located. Collecting sets appear at the top, while mastered sets appear at the bottom. $cDir = "collecting/"; // the directory where your collecting cards are, WITH a trailing slash $mDir = "mastered/"; // the directory where your mastered sets are, WITH a trailing slash // The sections will show up on your page in the order that they appear in the list below. You can add, delete, or edit as many lines as you want. There must be a trailing slash after the folder name. // If you are not using multiple pages, you can ignore the "Page" variables. $directories = array( array(Folder => "future/", Section => "Future Collecting", Worth => "1", Page => "1"), array(Folder => "maybe/", Section => "Might Trade", Worth => "1", Page => "2"), array(Folder => "trading/", Section => "Trading", Worth => "1", Page => "2"), array(Folder => "special/", Section => "Specials", Worth => "2", Page => "1"), array(Folder => "trading/pending/", Section => "Pending", Worth => "1", Page => "3"), ); // Configure variables for non-collecting and non-mastered sections. $perRow = "5"; // cards per row $rHover = "yes"; // yes or no -- whether or not you want the card name to show up when you hover over the card $noneText = "There are currently no cards in this section."; // the text that appears when there are no cards in a secton // Configure variables for filler cards in the collecting section. $fDir = "collecting/"; // the directory where your filler cards are, WITH a trailing slash $fillerEnd = "00"; // what your filler cards end in (e.g. for "harrypotter00", type 00; leave blank if it's just "harrypotter" $fHover = "yes"; // yes or no -- whether or not you want the needed card name to show up when you hover over a filler card $needText = "I need "; // when you hover over the filler cards, this text will show up, along with the needed card name (only if $hover is set to "yes") // Configure variables for the mastered sets section. $mTitle = "Mastered Sets"; // the title of the mastered sets section on your page $mDisplay = "image"; // image or text -- display links to your mastered sets using image badges or text links // Configure variables for displaying the mastered sets. Mastered badges should contain the same filename as the set. (Ex: A master badge for harrypotter could be harrypotter-master but not harry-master.) $bDir = "mastered/"; // where your mastered badges are located, WITH a trailing slash $bType = "gif"; // the image file type for your mastered badges (jpg, gif, png, etc) $bName1 = ""; // the text that goes before your mastered badge name (ex: for "master-harrypotter" type "master-") $bName2 = "-master"; // the text that goes after your mastered badge name (ex: for "harrypotter-master" type "-master") $separate = "
"; // if you selected "image" for the mastered sets section, enter the image separator here (" ", "
", etc) // Other variables. $page = "index.php"; // If you renamed this page to something other than index.php, type the new file name here $extension = "gif"; // The image file type for your cards (usually gif, but can also be png, jpg, etc) $pagination = "multiple"; // single or multiple -- if you want your cards to be all on one page or on different pages $bottom = "Go back?"; // use any html here, this will appear at the bottom of every non-index page (including individual mastered set pages) // If you selected "multiple" above, edit the variables below. Otherwise, stop editing here. $pages = "5"; // how many pages you want, can be any integer $cPage = "1"; // which page you want the collecting sets to be on $mPage = "4"; // which page you want the mastered sets to be on $introduction = "

These are my cards. Use the above menu to navigate!

"; // use any html here, this will appear on the main index page $where = "below"; // above or below -- where you want the introduction to show up in relation to the menu // You can add or delete as many lines as you want. "Num" is the page number, "Title" is what the link to the page will say. The links will show up in the order that they appear below (not in order of page number). // If you want a link that will lead back to the index page, leave "Num" blank (but make sure to count it as a page when setting $pages above). $pageTitles = array ( array(Num => "1", Title => "Keeping"), array(Num => "2", Title => "Trading"), array(Num => "3", Title => "Pending Trades"), array(Num => "4", Title => "Mastered"), array(Num => "", Title => "Index"), ); // Customize how the links to the different pages will show up. $remain = "yes"; // yes or no -- if you want the menu to stay at the top of every page or not $beginning = ""; // use any html here, this will appear at the beginning of each link except for the first one $end = " | "; // use any html here, this will appear at the end of each link except for the last one $first = "
"; // use any html here, this will only appear at the beginning of the first link $last = ""; //use any html here, this will only appear at the end of the last link /*************************************************************** STOP EDITING VARIABLES HERE ****************************************************************/ include($cardcount); ?>