poz Posted June 25, 2006 Report Share Posted June 25, 2006 ?ndern damit es nicht angezeigt wird. Hab die die abfrage gefunden wo die roten und gr?nen punkte angezeigt werden. Nur verstehe ich nicht an was bzw. wo hin wird das ?bergeben. Wenn ich den Status ?ndern m?chte wo befindet sich die f?nktion ? Wird das ?berhaupt an die DB ?bergeben? if ($products['products_status'] == '1') { echo xtc_image(DIR_WS_IMAGES . 'icon_status_green.gif', IMAGE_ICON_STATUS_GREEN, 10, 10) . '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=0&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_red_light.gif', IMAGE_ICON_STATUS_RED_LIGHT, 10, 10) . '</a>'; } else { echo '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=1&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_green_light.gif', IMAGE_ICON_STATUS_GREEN_LIGHT, 10, 10) . '</a>' . xtc_image(DIR_WS_IMAGES . 'icon_status_red.gif', IMAGE_ICON_STATUS_RED, 10, 10); } Kann mir bitte jemand das Erkl?ren ? Link to comment Share on other sites More sharing options...
x-twin Posted June 25, 2006 Report Share Posted June 25, 2006 Wenn Du uns etwas genauer erkl?rst, wo und wie Du den Status von was von welchem Wert auf welchen ?ndern willst, dann hilft Dir sicher jemand. Link to comment Share on other sites More sharing options...
poz Posted June 25, 2006 Author Report Share Posted June 25, 2006 Danke es geht um eine einfache ausgabe aus der Datenbank was ich eingebe Id, name, status Jetzt kann ich zb, in top einen wert ein geben eine 1 oder 0 ( eines f?r anzeigen, null f?r nicht anzeigen) Ausgabe aus der DB: $id $name $status 1 BMW3 0 2 BMW5 1 jetzt kann ich abfragen ob status null ist oder eine eins if($status='1') dann zeige den gruenen punkt. ???????????? bzw das hier einbauen if ($products['products_status'] == '1') { echo xtc_image(DIR_WS_IMAGES . 'icon_status_green.gif', IMAGE_ICON_STATUS_GREEN, 10, 10) . '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=0&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_red_light.gif', IMAGE_ICON_STATUS_RED_LIGHT, 10, 10) . '</a>'; } else { echo '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=1&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_green_light.gif', IMAGE_ICON_STATUS_GREEN_LIGHT, 10, 10) . '</a>' . xtc_image(DIR_WS_IMAGES . 'icon_status_red.gif', IMAGE_ICON_STATUS_RED, 10, 10); } Jetzt kapiere ich nicht wie wird das gemacht ich meine ich kann nirgens einen Update finden. Ich kann das nat?rlich selber schreiben aber ich m?chte wissen wie das xtc macht bzw. Denn das exestiert schon und ich bin je grade dabei es zu erlernen. Danke im Voraus <div class='quotetop'>QUOTE(poz @ Jun 25 2006, 04:40 PM) </div><div class='quotemain'> Danke es geht um eine einfache ausgabe aus der Datenbank was ich eingebe Id, name, status Jetzt kann ich zb, in staus einen wert ein geben eine 1 oder 0 ( eines f?r anzeigen, null f?r nicht anzeigen) Ausgabe aus der DB: $id $name $status 1 BMW3 0 2 BMW5 1 jetzt kann ich abfragen ob status null ist oder eine eins if($status='1') dann zeige den gruenen punkt. ???????????? bzw das hier einbauen if ($products['products_status'] == '1') { echo xtc_image(DIR_WS_IMAGES . 'icon_status_green.gif', IMAGE_ICON_STATUS_GREEN, 10, 10) . '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=0&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_red_light.gif', IMAGE_ICON_STATUS_RED_LIGHT, 10, 10) . '</a>'; } else { echo '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'action=setpflag&flag=1&pID=' . $products['products_id'] . '&cPath=' . $cPath) . '">' . xtc_image(DIR_WS_IMAGES . 'icon_status_green_light.gif', IMAGE_ICON_STATUS_GREEN_LIGHT, 10, 10) . '</a>' . xtc_image(DIR_WS_IMAGES . 'icon_status_red.gif', IMAGE_ICON_STATUS_RED, 10, 10); } Jetzt kapiere ich nicht wie wird das gemacht ich meine ich kann nirgens einen Update finden. Ich kann das nat?rlich selber schreiben aber ich m?chte wissen wie das xtc macht bzw. Denn das exestiert schon und ich bin je grade dabei es zu erlernen. Danke im Voraus Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.