Hallo!
Habe folgendes Problem:
Webhoster hat PHP Register_globals = Off
Eine Änderung auf on funktioniert aber per htaccess nicht.
Folgendes Script will ich laufen lassen:
<?php if(empty($action)) {require\_once('home.php'); } if($action=='search') { $Result=$proxy-\>searchProducts($arr\_search); if ($Result['searchProductsResult']['Records'] \> "0") { echo search($Result['searchProductsResult']['Items']['Item'],$Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection,$Page,$PageSize); } else { echo nofounds($Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection); } } if($action=='csearch') { $Result=$proxy-\>searchProductsInCategory($arr\_categoryproducts); if ($Result['searchProductsInCategoryResult']['Records'] \> "0") { echo search($Result['searchProductsInCategoryResult']['Items']['Item'],$Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection,$Page,$PageSize); } else { echo nofounds($Keywords,$PriceMin,$PriceMax,$OrderBy,$OrderDirection); } } if($action=='impressum') { require\_once('impressum.php'); } if($action=='haftung') { require\_once('haftung.php'); } ?\> Habe nun folgendes gemacht: <?php switch($_GET['action'])
{ case "impressum": include ("impressum.php"); break; case "haftung": include ("haftung.php"); break; default: include ("home.php"); #startseite laden break; case "search": include ("$Result=$proxy-\>searchProductsInCategory($arr\_categoryproducts);"); break; } Leider funktioniert hier die Produktabfrage aber nicht. habe auch schon form action=GET gemacht---hat aber nichts gebracht. Wie kann ich dies ändern?