• 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. J

    SQL Capabilities Question

    I don't understand your question fully. You could use SELECT * FROM table WHERE player_id = 133, but I'm not sure that's what you're looking for.
  2. J

    Coders wanna help me out plzzzzzzzzz.....

    http://www.mysql.com/doc http://www.php.net/manual If you don't know any PHP or MySQL I suggest you let someone else do it because it isn't *that* easy, you need to know both basic PHP and MySQL. :)
  3. J

    Looking for fraud prevention solution

    Yes, there's probably lots of scripts in PHP which have a function like this but probably not a stand-alone script. However this isn't that hard, you just need to generate a random-number and use the function mail() in PHP. I've done this with a shoppingsite myself just a couple of days ago...
  4. J

    Coders wanna help me out plzzzzzzzzz.....

    Well, then this isn't very hard. You need a *SQL-database with all information in it and a PHP-script which makes a complex query out of that stuff submitted from the user. The hard part will probably be to get a good tablestructure and get all the info to the database.
  5. J

    Coders wanna help me out plzzzzzzzzz.....

    This depend on if you have all the information in a database or are going to steal it. ;-) If you have everything in a SQL-or-simliar database it isn't that hard, some PHP would do. However if you're going to steal the info from some other site stuff can become harder. I've never made any...
  6. J

    How do you run PHP scripts as Cron Jobs?

    I personally use a bash-script which executes either wget och lynx.
  7. J

    cgi script?

    As a PHP-programmer I think PHP is the way to go, but you were requesting a CGI-script. Try searching Matt's site: http://www.cgi-resources.com
  8. J

    Need help please fix this php script

    You should be aware of a security hole in your script, if you PM I could tell you. And about the code: exec("/ping -n $count $host", $list); What about removing the "/"?
  9. J

    Peo POSER ON AIM - Watch out!

    I'm the winner, I don't even know what AIM is or where to get it! :P
  10. J

    New Form Of Advertising: Pause Pages

    These kind of ads were used on serveral swedish newssites when Windows XP was released. Personally, I think it's a rather good way, however I think it should be used only on the first page of a website, before the user enters the site and the logo of the site should be visible in a corner of the...
  11. J

    cgi scripts for subdomain

    You need a wildcard for subdomains in your DNS-server, some ISPs give you this, some doesn't. For example, you can have *.mydomain.com go to the same page as www.mydomain.com then a CGI-script can check what URL the user wrote and after that forward the user to that specific page.
  12. J

    How can i install (My SQL) for didcate server

    You can ready everything about it on http://www.mysql.com/doc/
  13. J

    Need a script...

    I can't tell if there's a script, however you should try http://www.php.net/links.php A script like that isn't the hardest thing to do however it may take some time, if you can't find one and are willing to pay I can make one for you.
  14. J

    G4r

    Re: Hey I don't understand your line of reasoning, why would it become more professional with more domains? The most professional as of today probably is a dotcom, however if you can't afford it whatever.it seem to be a decent alternative. Jome
  15. J

    backend game

    I think you should take a look here: http://php.resourceindex.com/Complete_Scripts/Games/ I don't know what you're looking for and have not been programming a game myself, seems pointless when there's cool games like Counter-Strike :P jome
  16. J

    Is there a way to prevent queries from submitting again on a reload?

    You could make it a hard way, generate a big random number and than make the script ignore a submission of an already handled number.. this may not be a great sollution, but it's a possible one tho. Jome
  17. J

    help with php code

    Hello, you should use if-statements. Like this: <? if ($QUERY_STRING == "services") { ?> <HTML> This is my services page! </HTML> <? } elseif ($QUERY_STRING == "contact") { ?> This is my contact page! <? } ?> ..and so on.
  18. J

    European webmasters

    Thanks, but the correct term would be welcome back I guess, I was here two years ago when you had the old forums.. :> Yes I believe there is one other than TD, though it's only available for companys and it's not as flexible as TradeDoubler. I think the name is dayrates or something like...
  19. J

    mydomain is down...

    According to my dictionary 'formlos' can mean shapeless (or 'formlös' in swedish). Don't know if it's accurate tho. Jome
  20. J

    PHP Question...

    Use str_replace and similar functions. Search for http:// and href= in the code. Can't be too hard.. http://php.net/manual Jome
Back
Top