Question: PHP Assume a PHP script retrieves data from table A with column names date , address , etc. Suppose a row of these retrieved results
PHP
Assume a PHP script retrieves data from table A with column names date, address, etc. Suppose a row of these retrieved results is then stored in $r. Write the PHP instruction that stores the value for date from $r in $date. Assume there is a database pointer $db already defined.
Possible Answer:
$date = $r [ "address " ] ;
Am I correct?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
