Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$text="TEXT TEXT TEXT";
$array_text=explode(" ",$text);
for($x=0;$x<100;$x++)
{
echo $array_text[$x]." ";
}
echo " <a href='#'>mehr</a>";
SELECT SUBSTRING_INDEX(`text`,' ',100) as `text` FROM `tabelle` WHERE ...
SUBSTRING_INDEX(str,delim,count)
Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned.
mysql> SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2);
-> 'www.mysql'
mysql> SELECT SUBSTRING_INDEX('www.mysql.com', '.', -2);
-> 'mysql.com'