Undefined Variable record: (in a path)/filename.php

$sql= "select * from demo table";
$handler=mysql_query($sql);
while($data=mysql_fetch_assoc($handler)){
$record[]=$data
}
<?php for($i=0;$i<count($record);$i++) ?>

Recommended Answers

All 2 Replies

$record=array();

write this before while loop.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.