Created
July 12, 2017 07:13
-
-
Save mskvsk/da680396b89301b0127e060fe7dfc3b4 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