“Foreach Loop funktioniert nicht in PHP” Code-Antworten

Für Schleife in PHP

/*
For loop in php
*/

<?php
for ($i = 0; $i < 10; $i++) {
     echo $i."<br>";
} 
?>
Ankur

Foreach Loop funktioniert nicht in PHP

<?php
$songs = $_POST["songs"];
//$songs = Array("one","two","three");
foreach ($songs as $song) 
{
   $songStr = test_input($song);
   $songsOut .= "<li>$songStr</li>";
};

$songList = "Songs: <ol> $songsOut </ol> \r\n";
echo $songList;

function test_input($data)
{
   $data = trim($data);
   $data = stripslashes($data);
   $data = htmlspecialchars($data);
   return $data;
}

?>
Jealous Jackal

Ähnliche Antworten wie “Foreach Loop funktioniert nicht in PHP”

Fragen ähnlich wie “Foreach Loop funktioniert nicht in PHP”

Weitere verwandte Antworten zu “Foreach Loop funktioniert nicht in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen