Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

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);
?>