numeric value. But I need to add 1 to this numeric value. Can I do this at the same time as I concatenate it? e.g. echo 'Number' . $i + 1; will give non-numeric value warning
echo 'Number' . ($i + 1);
Oh well I should've thought that. Thanks!
Обсуждают сегодня