• 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

Search results

  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...
  15. biggulp

    protect movies

    to hide the direct link put the movies out of your doc root. as for not alloing people to save the movies you might want to try streaming video to make it a little harder to rip.
  16. biggulp

    pretty stuck with invisionfree

    try www.ibplanet.com
  17. biggulp

    [PHP/MySQL] Selecting Random Info

    try SELECT * FROM banner_ads ORDER BY RAND(UNIX_TIMESTAMP()) LIMIT 1 $result = mysql_query("SELECT * FROM banner_ads ORDER BY RAND() LIMIT 1",$db); $banners = mysql_fetch_array($result); srand((float)microtime()*1000000); shuffle($banners); won't work since you already limit to 1 row...
  18. biggulp

    restoring mysql database

    thanks for your help, i've got it working:D
  19. biggulp

    restoring mysql database

    i made a mysql dump of my database from my website, but how do i restore the data into my win xp machine, because i want to test my scripts locally. i know how to restore to a unix server with ssh but i can't think of anyway where you can restore the backups without using phpmyadmin (always...
Back
Top