Jump to content
php.lv forumi

include


jauninjais

Recommended Posts

kr4 man ir kods:

 

if ($include=="123"){
include '123.php';
}

if(isset($_GET['include']) && file_exists($_GET['123'].'.php')) {
  include($_GET['123'].'.php');
} else {
  echo $result2[0];
}

 

$result2[0] ir no DB izvilkts rezultaats. probleema taada, ka, ja aizeju lapa.lv/?include=123 tad paraadaas incluudotais + veel apakshaa $result2[0] . kaapeec vinsh man raada $result2[0], ja tas tur netiek prasiits?

Link to comment
Share on other sites

tak varbūt izlasi ko pats sarakstījis..

if ($include=="123"){
include '123.php';  // IZPILDAS
}

if(isset($_GET['include']) && file_exists($_GET['123'].'.php')) {
  include($_GET['123'].'.php'); // NEIZPILDAS
} else {
  echo $result2[0]; // IZPILDAS
}

Link to comment
Share on other sites

×
×
  • Create New...