Skip to content

Instantly share code, notes, and snippets.

@figassis
Forked from mskvsk/matches.php
Created July 14, 2017 09:48
Show Gist options
  • Save figassis/b9aba998a36117a98f00dce3f4a6e5ad to your computer and use it in GitHub Desktop.
Save figassis/b9aba998a36117a98f00dce3f4a6e5ad to your computer and use it in GitHub Desktop.
<?
$entities = array('image', 'photo', 'text', 'source', 'site', 'traffic', 'money', 'book', 'e-book', 'file', 'smartphone', 'camera', 'notebook', 'cities', 'distances', 'cars', 'mobile', 'book', 'sex', 'love', 'classifieds', 'ads', 'alcohol', 'travel');
$verbs = array('sell', 'buy', 'rent', 'exchange', 'free', 'give', 'book', 'clean', 'find', 'classify', 'compare');
echo '<table style="width: 100%">';
foreach ($entities as $entity)
{
echo '<tr>';
foreach ($verbs as $verb)
echo "<td style='font-size: 14px; padding: 5px; text-align: center'>$verb $entity</td>";
echo '</tr>';
}
echo '</table>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment