0
I did this php code but it's not running please help me
2 odpowiedzi
+ 5
$stud = array("Aditya","Vinay","Ajay","Pratik","Sai"); // missing '=' (assignment operator)
foreach ($stud as $value) // $value not Svalue
{
echo "$value<br>"; // $value not Svalue
}
+ 1
Thanks sir