<?php

$quotes = [
	[
		'author' => 'Vincent Van Gogh',
		'text' => 'Where friendship blooms, life is reborn.',
	],
	[
		'author' => 'Robert Black',
		'text' => 'Find someone you care enough about to help you control your drinking. Preferably yourself.',
	],
	[
		'author' => 'GE Paulus',
		'text' => 'Friendship begins with a word.',
	],
	[
		'author' => 'Ray Bradbury',
		'text' => 'That\'s friendship, each playing the potter to see what shapes we can make of the other.',
	],
	[
		'author' => 'Adam S. McHugh',
		'text' => 'Introverts treasure the close relationships they have stretched so much to make.',
	],	

];

$quote = $quotes[array_rand($quotes)];
$quoteAuthor = $quote['author'];
$quoteText = $quote['text'];

echo "{$quoteText} - {$quoteAuthor}";

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: