zoni
05-29-2004, 10:26 AM
i write this php code
//*************************************************
<?php
require_once("Connections/connection.php");
$q_prod_prop = "select * from prop_prod";
$rs_q_prop_prod = mysql_query($q_prod_prop,$link) or die(mysql_error($link));
echo "Query :" .$q_prod_prop;
echo "<br>";
echo "<br>";
echo "Total No. of Records :".mysql_num_rows($rs_q_prop_prod);
echo "<BR>";
while($rows_rs_q_prop_prod = mysql_fetch_row($rs_q_prop_prod))
{
echo $rows_rs_q_prop_prod["prop_id"];
echo $rows_rs_q_prop_prod["prop_value"];
}
?>
//************************************************** *
But output of above php code is
//**************************************************
Query :select * from prop_prod
Total No. of Records :100
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
so on....
//************************************************** ****
why it gives me Notice: Undefined index: prop_value in...
Plz help me thanx.... in adv..
//*************************************************
<?php
require_once("Connections/connection.php");
$q_prod_prop = "select * from prop_prod";
$rs_q_prop_prod = mysql_query($q_prod_prop,$link) or die(mysql_error($link));
echo "Query :" .$q_prod_prop;
echo "<br>";
echo "<br>";
echo "Total No. of Records :".mysql_num_rows($rs_q_prop_prod);
echo "<BR>";
while($rows_rs_q_prop_prod = mysql_fetch_row($rs_q_prop_prod))
{
echo $rows_rs_q_prop_prod["prop_id"];
echo $rows_rs_q_prop_prod["prop_value"];
}
?>
//************************************************** *
But output of above php code is
//**************************************************
Query :select * from prop_prod
Total No. of Records :100
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
Notice: Undefined index: prop_id in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 13
Notice: Undefined index: prop_value in c:\inetpub\wwwroot\sdsdynamic\testing.php on line 14
so on....
//************************************************** ****
why it gives me Notice: Undefined index: prop_value in...
Plz help me thanx.... in adv..