Answers for "php foreach iteration number"

PHP
10

foreach loop in php

$arr = ['Item 1', 'Item 2', 'Item 3'];

foreach ($arr as $item) {
  var_dump($item);
}
Posted by: Guest on June-01-2020
1

php foreach array

$arr = array(1, 2, 3);
foreach ($arr as $key => $value) {
    echo "{$key} => {$value} ";
}
Posted by: Guest on March-06-2021
13

foreach php

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement
Posted by: Guest on May-26-2020
1

foreach loop in php

<?php
$food = array('burger','pizza','golgappa','momoes');
foreach($food as $value)
{
    echo $value,"<br>";
}
?>
Posted by: Guest on September-06-2021
0

php assign an array inside a foreach loop

$input = array("teamA","teamB","teamC");
$data = [];
foreach($input as $value){
    $assign = "50"; /* The data just temp */
    $data[$value] = $assign;
}

echo $data["teamA"];
Posted by: Guest on July-26-2021
0

echo foreach

$array = array();
     $result = mysql_query("SHOW TABLES FROM `st_db_1`");
     while($row = mysql_fetch_row($result) ){
     $result_tb = mysql_query("SELECT id FROM $row[0] LIMIT 1");
     $row_tb=mysql_fetch_array($result_tb);
     $array[] = $row[0];
     $array2[] = $row_tb[0];
     //checking for availbility of result_tb
     /*   if (!$result_tb) {
                  echo "DB Error, could not list tablesn";
                  echo 'MySQL Error: ' . mysql_error();
                  exit;
                  }  */
     }
     natsort($array);
     natsort($array2);

    foreach ($array as $item[0]  ) {
    echo "<a href=show_cls_db.php?id= foreach ($array2 as $item2[0]){echo \"$item2[0]\"}>{$item[0]}<br/><a/>" ;
    }
Posted by: Guest on October-11-2020

Code answers related to "php foreach iteration number"

Browse Popular Code Answers by Language