• 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 hohoho

  1. hohoho

    PHP: Get data from cookie

    setcookie("data", "$username", time() + 993600, "", "domain.com"); include("data/".$HTTP_COOKIE_VARS['data'].".php");
  2. hohoho

    PHP - Maths

    if( ($value >= 100000) && ($value <= 300000) ) { you can also use if( ($value >= 100000) and ($value <= 300000) ) {
  3. hohoho

    phpBB 2 Vs InvisionBoard

    i like invisionboard more because coding plugins is easier than for phpbb2
  4. hohoho

    [PHP]Confusing Question

    firstoff, it's mysql_fetch_array :p i don't think it will work because you should use != ( not equal ) and not <> ( mysql syntax ) and here's another way ( via mysql query ) include("./data/db_info.php"); mysql_connect($host, $user, $pass); mysql_select_db($db)...
  5. hohoho

    What age are you ?

    16 :D
  6. hohoho

    Starting an open source development community

    if you have a board for php / mysql, i would be happy to become a moderator :D
  7. hohoho

    Starting an open source development community

    and which programming languages will your community develop ?
  8. hohoho

    php/mysql script help

    <? $host = "localhost"; $user = "user"; $pass = "pass"; $db = "db"; mysql_connect($host, $user, $pass) or die ('I cannot connect to the database because: ' . mysql_error()); mysql_select_db ($db); $result = mysql_query("SELECT * FROM roster ORDER BY roster.screen_name ASC"); echo...
  9. hohoho

    XHTML validation question

    add a / to each <img> tag, like before: <div align="center"><img src="img/logo/logo_2.jpg" alt="ranvier logo" ></div> after: <div align="center"><img src="img/logo/logo_2.jpg" alt="ranvier logo" /></div>
  10. hohoho

    Remove a text

    $text = eregi_replace("\%(.*)\%", "", $text);
  11. hohoho

    Thread-Starter Hack ?

    if you need some translation, i'm german :D
  12. hohoho

    Debugging this PHP script...

    $msg .= "IP address: $ipaddress\n; $msg .= "Name: $FName $LName\n\n"; $msg .= "Address wanted: $username $subdomain\n\n"; $msg .= "Password: $password\n; $msg .= "mySql: $mysql\n"; $msg .= "Email Address...
  13. hohoho

    [php] my poll no worky!

    your script ( or the script survey/poll.php ) can't include poll_obj.php either the path / filename is wrong or you haven't chmod'ed it correctly
  14. hohoho

    Concatenate problem in php

    for($i=1; $i <= 10; $i++) { eval("if(\$image$i != \"\")"); { $data = addslashes(fread(fopen(eval("\$image$i"), "r"), filesize (eval("\$image$i")))); $sdbquery = "INSERT INTO main_screenshot (game_id, screenshot_data) VALUES ($id,'$data')" if (@mysql_query($sdbquery)) { echo...
  15. hohoho

    Why doesn't anyone create an easier language?

    the problem with easier languages is that they don't have as much functions / they are not as powerful as the harder ones ...
Back
Top