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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!