How can I do this without storing the array in a variable?
Something like this, but valid:
<?php $website = parse_url($data[22]); echo $website['host']; ?>
Something like this, but valid:
<?php echo parse_url($data[22])['host']; ?>
