
Form & PHP
Quiz by Marco Buccione
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
10 questions
Show answers
- Q1Quale linguaggio consente di aggiungere contenuto dinamico a un sito web?HTMLC++PHPCSS30s
- Q2Quale tag permette a un utente di inserire dati all'interno di una pagina web?<form><p><title><div>30s
- Q3Quale, tra i seguenti, NON è un tag HTML utilizzato in un form?<label><form><p><input>30s
- Q4Quale simbolo denota una variabile in PHP?Users enter free textType an Answer30s
- Q5Quale variabile "built-in" di PHP consente di leggere i valori inseriti da un utente in un form?$_FORM$_VALUES$_INPUT$_POST30s
- Q6Quale, tra i seguenti frammenti di PHP, è in grado di leggere l'indirizzo e-mail inserito da un utente in un form?$_POST[1]$_POST["email"]$_FORM[1]$_FORM["email"]30s
- Q7Quale linguaggio permette di eseguire la validazione lato client di un form?HTML5CSSPHPC++30s
- Q8Quale, tra i seguenti tag HTML, è più indicato per far inserire a un utente la propria età?<input type="email" name="eta" id="eta"><input type="text" name="eta" id="eta"><input type="date" name="eta" id="eta"><input type="number" name="eta" id="eta">45s
- Q9Quale funzione PHP permette di verificare se un valore ricevuto da un form è un numero?empty()is_numeric()filter_var()is_string()45s
- Q10In PHP è possibile scrivere il seguente codice: <?php echo "<p>Nome: $nome</p>"; ?>VeroFalso30s