Search results

  1. dickey

    Change once, changee all...

    yes you can do that. with javascript and/or php depending if you have the actual script already. judging by what you actually typed I am assuming you have an existing javascript menu, is this right? You will have to write the whole menu and save it into one file e.g. blah. then include it to...
  2. dickey

    PHP Screwing Up

    <?php include("http://masterjake.x10hosting.com/include/body_footer.php"); ?> I think the error comes from this. try: <?php include "/include/body_footer.php"; ?> instead. Try to change your includes to unix-like directory syntax. remember '../' and './' works also. this avoids domain...
  3. dickey

    no scroll

    can you give me a link? maybe I can try to do something for you. I like challenges like this. Makes me feel alive.
  4. dickey

    How can I turn off my site temporarily ?

    Then I'd go for the PHP hack or fix, since it gives me more control. There shouldn't be panic caused to your visitors. :) This is something I recently worked out. hope someone can give me feedback. <?php session_start(); //if main page...
  5. dickey

    which is best method?

    yeah I heard that yahoo outsourced their search and ads to google... imagine that, virtually giving the whole market to google. but I'm not complainin as I am a google addict.
  6. dickey

    Monitoring Server Usage

    I think there are details you can look into in your cpanel. it will give you ip addresses though but if you know what your ip address is (or it's range for dynamic ips) then you can eliminate which one is you and which one are visitors. Sometimes what I do is make my own logging system but it...
  7. dickey

    How can I turn off my site temporarily ?

    I like this idea, maybe create an alternative page. then check a dbase value like for website_status and if logged in as admin, then if in maintennance mode display the alternate page, then maybe you can use a password to unlock the page for you to make you logged in as admin, so while the rest...
  8. dickey

    PHP - MySQL

    first suggestion is to put your query in a string variable, then try to echo it, from there you can see if your query is what it should be.if not you can try to correct it. I do this as sometimes doing this: $result = mysql_query("INSERT INTO ".$_POST['table']." (".$_POST['c1']."...
  9. dickey

    NTFS vs FAT

    I could say linux is good I triple boot also with windows XP, Ubuntu and Puppy. And I believe it gives a user more power when he is able to access any filesystem. But the thing is, with security comes risks, but without risks there would be no computers... if you get what I am saying.
  10. dickey

    How can I turn off my site temporarily ?

    Can you give example of how to do that using .htaccess as I wanted to ask the same question. :)
  11. dickey

    which is best method?

    Do anybody know about other search engines?
  12. dickey

    PHP - MySQL

    Basically if there be errors check syntax first. then if($_POST['step']=="1") { $form="2"; } elseif($_POST['step']=="2") { $form="2"; } is confusing or it might be wrong. or it might be part of your logic. another point is maybe you should initialize the variable...
  13. dickey

    help!!!!!

    can you post a link so we can see the page in action. Thanks. try this if it works li.inline { float:left; padding-left: 0px; padding-right: 0px; border-right: 0px dotted #066; }
  14. dickey

    Need help

    Additionally sign up for a gmail and Yahoo account. and try to look around, they have some tools for you to manage your websites... I will put a link here soon. If the thread is still open. and in google search type the URL (e.g. http://yourpage.x10hosting.com) as a search and it will prompt...
  15. dickey

    no scroll

    sorry for the late response. it is a property for the body tags. But I'm not sure if it still works. last time it works in IE7 and below and it doesn't work in firefox. anyway you don't have to change anything but just add the scroll="no" as in <html> <head> <title>no scroll bars...
  16. dickey

    no scroll

    I think in IE there is an extra property for the body tag. I think you can try this... <body scroll="no"> ... </body>
  17. dickey

    Call to function from action attribute of form tag

    when posting a quick reply there is an extra check box below the 'quote message in reply' If you still want to try then the solution is to remove the action property. and put the javscript function in the onclick event of the submit button. :)
  18. dickey

    no scroll

    do you totally don't want scroll bars? if so put a overflow:none under body in your css.
  19. dickey

    TAFE STUDENT - what other ways can I write this code?

    there's also a version for a pure javascript. <html> <body> <script> x = prompt("enter a number "); y = prompt("Enter another number"); z=(x>y?x:y); alert("the larger number is " + z+ "?"); </script> </body> </html> the thing here is it runs one time only...
  20. dickey

    Site Alignment on Internet Explorer

    I think it is because of your having 2 doctypes. and having code before doctypes gives a lot of error. it should be the first line in your html file. try to correct that problem... <TITLE>Utada United - The Unofficial Source for Utada Hikaru</title> <!DOCTYPE html PUBLIC "-//W3C//DTD...
Top