Skip to content

Instantly share code, notes, and snippets.

@mskvsk
Created January 15, 2017 13:17
Show Gist options
  • Save mskvsk/cac7a329ec8b44e75a7f9d9a929688d7 to your computer and use it in GitHub Desktop.
Save mskvsk/cac7a329ec8b44e75a7f9d9a929688d7 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