Rundinhio Posted March 16, 2007 Report Share Posted March 16, 2007 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 More sharing options...
John Steed Posted March 19, 2007 Report Share Posted March 19, 2007 Wie denn? Wo denn? Ich sehe nur, dass Du, falls cPath NICHT mit _ anfängt, auf $_GET['cat'] zugreifst... Link to comment Share on other sites More sharing options...
caru Posted November 23, 2008 Report Share Posted November 23, 2008 $_GET['cPath'] kommt aus dem header der aufrufenden datei so hast du www.testname.de/xtc/index.php?cpath=c154--teestkategorie so hat die Variable $_GET['cPath'] den Wert c154--teestkategorie Link to comment Share on other sites More sharing options...
John Steed Posted November 25, 2008 Report Share Posted November 25, 2008 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 More sharing options...
caru Posted November 25, 2008 Report Share Posted November 25, 2008 Darauf wollte ich hinaus. Es sollte um das Verständnis von $_GET Variablen gehen. Denn dies sah ich als Frage, wie es funktioniert und nicht den PHP Teil dahinter. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.