Jump to content
xt:Commerce Community Forum

Wieso leere Ausgabe?


Rundinhio

Recommended Posts

Wieso bekomme ich keine Werte in die Variable $_cPath übergeben?

Find den Fehler nicht, bin noch recht frisch in Sachen PHP. Wär also über jede Hilfe dankbar.

Hier der Code:

	if ($_GET['cPath']) {
if (strpos($_GET['cPath'], '_') == '1') {
$arr = explode('_', xtc_input_validation($_GET['cPath'], 'cPath', ''));
$_cPath = $arr[1];
} else {
//$_cPath=(int)$_GET['cPath'];
if (isset ($_GET['cat'])) {
$site = explode('_', $_GET['cat']);
$cID = $site[0];
$_cPath = str_replace('','', $cID);
}
}[/PHP]

Vielen Dank schon mal...

Link to comment
Share on other sites

  • 1 year later...

if (strpos($_GET['cPath'], '_') == '1') {
$arr = explode('_', xtc_input_validation($_GET['cPath'], 'cPath', ''));
$_cPath = $arr[1];
}[/PHP]

fragt doch nach Unterstrichen?!? Wenn Du c154--teestkategorie testen willst, musst Du doch nach Bindestrichen fragen, oder nicht? ;)

So vielleicht:

[PHP]if (strpos($_GET['cPath'], '-')) {
$arr = explode('-', xtc_input_validation($_GET['cPath'], 'cPath', ''));
$_cPath = $arr[1];
}[/PHP]

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...