Search results

  1. dickey

    Is cossacks server down?

    This error should be because of the server transfers. Just try again in a few hours. Although it might be days before the server transfer completes. Just check every once in a while.
  2. dickey

    redirect

    I agree with twinkie, curl can easily trick your page to make it believe that the referrer is legitimate I suggest you put a captcha and store the password in as a session variable and you will be sure of your security. but basically you use the header() function to redirect in php.
  3. dickey

    PHP GD extension gone ?

    thanks sunils I will try again after the transfers.
  4. dickey

    Please review my site...

    That's a new logo you have there?
  5. dickey

    Viral Scripts - VBS

    I am just asking for information as I want to counter the effect of the worm. To the mods if this topic is in violation of the rules please delete the thread. Though I can help to undo the effects of the worm though. I am particularly interested in the simple encryption of the sowar worm and am...
  6. dickey

    Viral Scripts - VBS

    Has anyone encountered a VBS Worm by the name of "Cool USEP Sex Scandal" or "Nude SSG Sex Scandal" if the answer is yes can you PM me please I want to ask you to email the original file or script of the worm the one that is encrypted. Thanks Edit: Oh and if anybody got infected with this it is...
  7. dickey

    PHP GD extension gone ?

    I have the same problem and that is why I scrapped putting a captcha and comments function on my page. :)
  8. dickey

    How long before php mail arrives

    I had the same problem with when I signed up. So I think it is a problem with google appz email not with x10hosting email. Gmail, yahoo mail and most other emails can accept without problems.
  9. dickey

    Please review my site...

    I am using firefox 3.0, and yeah you need lots more work. Your site looks flat or 2d. Try adding 3d borders in the body of your page. and like a comment up there try to add effects to your navigation. One more thing try to redo your color combination and maybe change your logo font and try to...
  10. dickey

    Need help with php mail

    Just utilize the headers options in the mail() function. e.g. $to="user@server.com"; $subject="Mail Topic"; $message="The mail contents.... blah blah blah..."; $headers ="From: Sender Name <sender@email.address>"; $headers.="Return-path: email-address@receivingthe.reply"...
  11. dickey

    MySQL Help, can somebody move this thread if it does not belong here

    I would also suggest wampserver as installing the three individually can waste like 2 hours of your time trying to figure out what went wrong and googling for answers. But if you are like me then just try to figure it out anyway we are here to help.
  12. dickey

    250 Credits to play games on my site and getting TOP 10 high score.

    So is it still there now?
  13. dickey

    FCKEditor help

    What scoochi2 posted should've worked, basically what you want is to use a string parser and string replace functions. so it should have worked.
  14. dickey

    MySQL Help, can somebody move this thread if it does not belong here

    yes and no... Yes you have to install apache, but NO it will not compile PHP source, (and if I want to be strict the reason would be becaus PHP is not a compiled language). given that reason above you need to install apache, php, and mysql. Since you have mysql already you need to install...
  15. dickey

    Anyone good with PHP

    You need loops to do the manipulations but if you just want to check contents print_r($boxes) would do.
  16. dickey

    Code snippet examples

    I'd say it is a nice idea but most people who asks thinks that their problem is unique. That would be why they will still ask anyway even if the question should have been answered at least a thousand times. :)
  17. dickey

    HELP! Adding data on my database tables...

    well there are two things that you can do it depends on your form. If you are using method="GET" or using method="POST" your action file should be in php. assuming you are using POST with userid as varchar(type) and cssfile as text type. And that you have successfully connected to your...
  18. dickey

    Inserting single records to my database...

    If you are using PHP and MySQL... you must login to your SQL using $mysqli=mysqli("localhost","username","password","databasename"); then create a query string like... $query = "INSERT INTO tablename (integer_field, varchar_field) VALUES (1,'This is a string.')"; then do a...
  19. dickey

    How to wrap a code...

    you can manually press enter on white spaces. is it a php code? <?php $html_code= " <p>Hello world...</p> <p>This is a long line and should be wrapped but I don't know how to, so if anybody can help me I would really appreciate it. But it may be possible that they might...
  20. dickey

    HELP! Adding data on my database tables...

    I think what you need is to issue some SQL commands to add to your database try mysql.net
Top