• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Recent content by biggulp

  1. biggulp

    Are Polls Usefull?

    depends
  2. biggulp

    How high is your taskbar?

    windows key + m does the same
  3. biggulp

    vBulletin 3.0.0 Beta 6 Released

    This thread is going grossly out of topic.
  4. biggulp

    Why are people still using HTML?

    Omittag works with old browsers while still allowing you to maintain valid XHTML.
  5. biggulp

    Why are people still using HTML?

    PHP and other scripting languages are server side. So it is impossible to integrate such functionality into XHTML/HTML. XHTML encourages standards compliance and correct coding, as well as coupling CSS for styling, making it possible to make a website usable in any internet enabled device if...
  6. biggulp

    browsers

    how do you uninstall ie? i thought it was part of the OS? or are you using win 95?
  7. biggulp

    Using Safe-Mode Form Variables in mySQL Query

    $result = mysql_query("INSERT INTO mytable (column1, column2) VALUES ('{$_POST['variable1']}', '{$_POST['variable2']}'") or die ("Query Error: ".mysql_error());
  8. biggulp

    Asp Page Refresh Code Required

    javascript will do that. asp is server side.
  9. biggulp

    Checking 404

    what do you mean by checker scripts?
  10. biggulp

    [PHP/MySQL] Selecting Random Info

    looks like something wrong with your random functions.:confused2
  11. biggulp

    Questions about META TAGS...

    wrong. google indexes page content. it doesn't use meta tags
  12. biggulp

    Div layers...

    http://home.chello.no/~acidweb/you/tutorials/html/div_layers.htm ?
  13. biggulp

    Global on php newer version

    should work. are the variables defined?
  14. biggulp

    Banner Rotator??

    <?php <?php mt_srand((double)microtime() * 1000000); $images = array( 'img01.gif', 'img02.gif', 'img03.gif' ); $random = $images[mt_rand(0, count($images) - 1]; $path_to_image = 'images/' . $random; $fp = fopen($path_to_image, 'r'); $contents = fread($fp...
Back
Top