53063593e3
Final
13 lines
263 B
PHP
13 lines
263 B
PHP
<?php
|
|
$fname = "Doctor";
|
|
$sname = "Who";
|
|
$planet = "Gallifrey";
|
|
$system = "Gridlock";
|
|
$constellation = "Kasterborous";
|
|
|
|
$contact = compact('fname', 'sname', 'planet', 'system', 'constellation');
|
|
|
|
print_r($contact);
|
|
?>
|
|
|