Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
if(ctype_string($string)) {
Sql-Eintrag
} else {
echo „Keine Leerzeichen“;
}
Erstaunlicherweise sieht man sowas immer wieder, aber was soll das Umschreiben von $_POST['name']?$meinString = $_POST['name'];
Nirgendwo, nochmal, die Funktion gibt es nicht.dass ich nicht weiß wo ich den ctype-string platzieren soll
<?php
if (strpos($_POST['name'], ' ') === true) {
echo "Deine Eingabe darf keine Leerzeichen enthalten";
} else {
SQL-Eintrag
}
?>