Registriert seit: 22. Mär 2005
Ort: Dingolfing
4.129 Beiträge
Turbo Delphi für Win32
|
Re: [PHP] Hash-Arrays in Strings
3. Jun 2006, 12:55
Außerhalb eines Strings schon.
Normales echo:
echo $variable;
Echo mit Variablenname im String:
echo "$variable";
Und bei Arrays:
echo $array["blubb"];
Mit Variablenname:
echo "$array[blubb]";
Könnte das bitte mal jemand auf seinem Webspace testen?
Manuel Eberl „The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.“
- Terry Pratchett
|