single quotes in echo commands

This commit is contained in:
2026-04-08 19:04:15 +02:00
parent 6f322011ea
commit 02f54ffb1a
+6 -6
View File
@@ -2,15 +2,15 @@
echo "<html><body>"; echo "<html><body>";
echo "<form action="xor23.php" method="get">"; echo "<form action="xor23.php" method="get">";
echo "component #1: <input type="text" name="comp1" size="64" maxlenght="64"><br>"; echo 'component #1: <input type="text" name="comp1" size="64" maxlenght="64"><br>';
echo "component #2: <input type="text" name="comp2" size="64" maxlenght="64"><br>"; echo 'component #2: <input type="text" name="comp2" size="64" maxlenght="64"><br>';
echo "component #3: <input type="text" name="comp3" size="64" maxlenght="64"><br>"; echo 'component #3: <input type="text" name="comp3" size="64" maxlenght="64"><br>';
echo "<input type="submit">"; echo '<input type="submit">';
echo"<div class="messagebox">"; echo'<div class="messagebox">';
echo $output; echo $output;
echo "</div>"; echo '</div>';
echo"</form>"; echo"</form>";
echo "</body></html>"; echo "</body></html>";