Created
January 15, 2017 13:17
-
-
Save mskvsk/cac7a329ec8b44e75a7f9d9a929688d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$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