logic related question
Posted: Wed Jun 21, 2006 7:39 pm
i have defined a database connection
but when i try this :
i get a blank field.
My question is: Is it posible that the value of the $row_Recordset3['NDA'] is populated on page load and not verified after that, or PHP will check ig the value has been updated every time i call $row_Recordset3['NDA']
?
Code: Select all
mysql_select_db($database_pickageek, $pickageek);
$query_Recordset3 = sprintf("SELECT NDA FROM awapr WHERE `session` = '%s'", $colname_Recordset3);
$Recordset3 = mysql_query($query_Recordset3, $pickageek) or die(mysql_error());
$row_Recordset3 = mysql_fetch_assoc($Recordset3);
$totalRows_Recordset3 = mysql_num_rows($Recordset3);Code: Select all
$nnda= $row_Recordset3['NDA'];
echo $nnda;My question is: Is it posible that the value of the $row_Recordset3['NDA'] is populated on page load and not verified after that, or PHP will check ig the value has been updated every time i call $row_Recordset3['NDA']
?