When I run the following code:
echo $_POST['zipcode'];
print_r($lookup->query($_POST['zipcode']));
?>
the results are concatenated on one line like so: 10952Array.
How can I get it to display on separate lines, like so:
08701
Array
|
When I run the following code:
the results are concatenated on one line like so: How can I get it to display on separate lines, like so:
|
|||
|
|
|
You might need to add a linebreak:
If you wish to add breaks between print_r() statements:
|
||||