[ create a new paste ] login | about

Link: http://codepad.org/fiPYqVny    [ raw code | output | fork ]

cms - PHP, pasted on Aug 17:
<?

$keys = array(
"0" => "sss",
"1" => "wst",
"2" => "sfv",
"3" => "lac",
"4" => "sgv",
"5" => "lgb",
"6" => "ant"
);

$urls = array(
"0" => "http://www.sarmenhb.com/index.php?key=",
"1" => "http://www.navidoor.com/index.php?key=",
"2" => "http://www.worldexchange.com/index.php?key=",
"3" => "http://www.iaddesign.com/index.php?key=",
"4" => "http://www.iadesignandstudio.com/index.php?key=",
"5" => "http://www.redlineautoleasing.com/index.php?key="

);

foreach($urls as $url) {
  foreach($keys as $key) {
    print $url.$key."\n";
  }
}


Output:
http://www.sarmenhb.com/index.php?key=sss
http://www.sarmenhb.com/index.php?key=wst
http://www.sarmenhb.com/index.php?key=sfv
http://www.sarmenhb.com/index.php?key=lac
http://www.sarmenhb.com/index.php?key=sgv
http://www.sarmenhb.com/index.php?key=lgb
http://www.sarmenhb.com/index.php?key=ant
http://www.navidoor.com/index.php?key=sss
http://www.navidoor.com/index.php?key=wst
http://www.navidoor.com/index.php?key=sfv
http://www.navidoor.com/index.php?key=lac
http://www.navidoor.com/index.php?key=sgv
http://www.navidoor.com/index.php?key=lgb
http://www.navidoor.com/index.php?key=ant
http://www.worldexchange.com/index.php?key=sss
http://www.worldexchange.com/index.php?key=wst
http://www.worldexchange.com/index.php?key=sfv
http://www.worldexchange.com/index.php?key=lac
http://www.worldexchange.com/index.php?key=sgv
http://www.worldexchange.com/index.php?key=lgb
http://www.worldexchange.com/index.php?key=ant
http://www.iaddesign.com/index.php?key=sss
http://www.iaddesign.com/index.php?key=wst
http://www.iaddesign.com/index.php?key=sfv
http://www.iaddesign.com/index.php?key=lac
http://www.iaddesign.com/index.php?key=sgv
http://www.iaddesign.com/index.php?key=lgb
http://www.iaddesign.com/index.php?key=ant
http://www.iadesignandstudio.com/index.php?key=sss
http://www.iadesignandstudio.com/index.php?key=wst
http://www.iadesignandstudio.com/index.php?key=sfv
http://www.iadesignandstudio.com/index.php?key=lac
http://www.iadesignandstudio.com/index.php?key=sgv
http://www.iadesignandstudio.com/index.php?key=lgb
http://www.iadesignandstudio.com/index.php?key=ant
http://www.redlineautoleasing.com/index.php?key=sss
http://www.redlineautoleasing.com/index.php?key=wst
http://www.redlineautoleasing.com/index.php?key=sfv
http://www.redlineautoleasing.com/index.php?key=lac
http://www.redlineautoleasing.com/index.php?key=sgv
http://www.redlineautoleasing.com/index.php?key=lgb
http://www.redlineautoleasing.com/index.php?key=ant


Create a new paste based on this one


Comments: