Jump to content

Bjørnar

Members
  • Posts

    10
  • Joined

  • Last visited

About Bjørnar

  • Birthday 10/07/1987

Contact Methods

  • Website URL
    http://
  • ICQ
    0

Profile Information

  • Location
    Haugesund, Norway

Bjørnar's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Bjørnar

    PHP need help

    Just put the php file in the htdocs folder (in the xampp foler) and go to http://localhost/nameofyourfile.php.You can use phpMyAdmin to manage MySQL databases in xampp (http://localhost/phpmyadmin/)
  2. Bjørnar

    PHP need help

    Are you trying to run the PHP files on your computer? In that case you have to set up a local server on it. XAMPP is an easy way of doing that, though it installs alot more than you need.
  3. You have to escape the quotation marks in the string you're going to print, like this: }if ($Chara == ""){echo "<p class=bodymd>Universal Online In-game Account Character<br><select name=\"Chara\"><option value=\"chara1\" selected>Character 1</option><option value=\"chara2\">Character 2</option><option value=\"chara3\">Character 3</option></select></p>";} Note the \ in front of the ".
  4. I believe the problem is that you're checking if $valueOfgbpage is 1, while you should be checking $valueOfgb.In other words, replace this: $valueOfgb = $_GET['gbpage']; with this: $valueOfgbpage = $_GET['gbpage'];
  5. The difference is that require_once will produce a fatal error on failure, while include only produces a warning.
  6. I got 20 of 20 in the Javascript quiz, but I don't think I'm more than intermediate. Probably somewhere between intermediate and advanced. I do know some DOM and create some dynamic scripts. Always learning
  7. You could always use <br /> after every letter
  8. If you want to try out PHP, and don't want to install a webserver manually, try XAMPP which installs a webserver with PHP (and lots of other stuff) for you.
  9. Bjørnar

    FLASH Versus HTML

    Personally I prefer HTML only. Flash often has long loading times. I would prefer to disable Flash in my browser, mainly to stop Flash-banners, but I couldn't because it stopped me from using so many sites. Also, at school, Flash isn't installed, so I can't use any sites that uses Flash-navigation or something.Of course Flash does have it's positive sides to, it looks the same no matter what browser you use and you can make som cool sites, but I don't think that makes up for it.
  10. Bjørnar

    images

    And when you have uploaded the image, use the code you find here:http://www.w3schools.com/html/html_images.aspJust remember to put the full URL in the src attribute if you host it on an external site.
×
×
  • Create New...