echo $begrüßung;
To cast a string to a numeric value in numeric context, you don't normally have to do anything. Just use the string value as though it were a number:
ORDER BY
sol
,pla
Das weiß das MySQL aber nicht, dass du hier einen numerischen Kontext haben möchtest. sol und pla sind vom Typ "string". Um den numerischen Kontext zu erhalten kann man ORDER BY 0 + sol
, 0 + pla
schreiben.
echo "$verabschiedung $name";