Mailinglisten-Archive |
Hi!
Ich habe mir folgende Funktion geschrieben. Die Ausgabe der Funktion würde
ich gerne in Form einer Variablen weiterverarbeiten. Wie kann ich das
machen?
function text_feld (){
global $textfeld;
$string = $textfeld;
$i = 0;
$b = 1;
$array = explode(" ",$string);
while ($i < count ($array)) {
echo "(zeichnung_tab.textfeld like \"$array[$i]\")";
if ($i < (count ($array) -1)) {
echo "OR";
}
$i++;
}
}
Gruß
Mike
php::bar PHP Wiki - Listenarchive