Jump to content

ziggelflex

New Members
  • Posts

    2
  • Joined

  • Last visited

ziggelflex's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have this. $root = './dir1'; $structure = .$root."./dir2/dir3/dir4/dir5/dir6"; and I want the $structure variable to contain ./dir1/dir2/dir3/dir4/dir5/dir6 Any help. I know this is very basic. So thanks in advance
  2. Hey, I'm new here and haven't gotten used to the way things are on this forum yet. I will try hard to get used to your ways. I have an issue with bootstrap. When I shrink the browser size down and the burger appears and then I tap/click on it nothing happens. I have been to bootstraps help and reference pages and i'm pretty sure I have done everything right. Anyway any help would be great. Here is my code. <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Test Nav</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> </head> <body> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="#">Test Nav</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNavAltMarkup"> <div class="navbar-nav"> <a class="nav-item nav-link" href="login_create.php">Create</a> <a class="nav-item nav-link" href="login_read.php">Read</a> <a class="nav-item nav-link" href="login_update.php">Update</a> <a class="nav-item nav-link" href="login_delete.php">Delete</a> </div> </div> </nav> </body> </html> Cheers Ziggy
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.