BossBey File Manager
PHP:
8.1.34
OS:
Linux
User:
ebookghostwritin
Root
/
home
/
ebookghostwritin
/
public_html
/
beta
📤 Upload
📝 New File
📁 New Folder
Close
Editing: all-locations.php
<?php // Suppose you have dynamic routes like /location/{slug} // Put this in your root directory $locations = ['new-york', 'los-angeles', 'chicago', 'miami']; // or get from DB ?> <!DOCTYPE html> <html> <head> <title>All Locations</title> </head> <body> <h1>All Locations</h1> <ul> <?php foreach ($locations as $loc): ?> <li><a href="/location/<?php echo $loc; ?>"><?php echo ucwords(str_replace('-', ' ', $loc)); ?></a></li> <?php endforeach; ?> </ul> </body> </html>
Save
Cancel