Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Moonspell

    module not found

    I seem to remember having this problem and the solution was that I had the wrong module installed ( ie an older version ). don't know if this was really the case or the module was corrupt but dl the correct version for the php installation, remove the modules already installed and put in the...
  2. Moonspell

    email form again

    just one other thing. if (isset($_POST['name']) and isset($_POST['email'])) and not if ($_POST) just a thought.
  3. Moonspell

    logic in php as opposed to asp a few questions

    I have several pages that have a combination of php with javascrips and vbscript and one page with php/javascript/vbscript all working together to get the job done quickly and easily. so the answer to your question is yes, you can mix them. of course php is server side only so i have used...
  4. Moonspell

    email form again

    hmm for my money i would just use the following: <form name="bah" action="pagename.php" method="post"> where pagename is the name of the page this is in...... not very dynamic i know but it is only one little but.
  5. Moonspell

    IP Address Resolution

    yes it does, but it is not good practice and does (i have found) slow down the server as it processes the requests.
  6. Moonspell

    Submit form

    hmm, you could do this in php but you would be much faster doing it in javascript or vbscript.... to complete this task, to the best of my knowledge, you would need to: 1. generate the form. 2. submit the form 3. redirect the page with the correct url..... <?php $var = $_GET["form_value"]...
  7. Moonspell

    stuck in 16 colours 640-480

    here's another few words - video drivers. sounds like you have not installed the correct video drivers for the card. suggest removing the card from device manager - reboot and let the pc detect the card.
  8. Moonspell

    Force 404 with header

    hmm, works fine for me. have you got short tags enabled? if not you will need to put in <?PHP header("HTTP/1.0 404 Not Found"); exit; ?> cause it may be that the script is not being run. from what you say about putting in "here" I suspect this is the case when it displays it.
  9. Moonspell

    Which editor/debug program do you use?

    NOTEPAD! but seriously though, I use AEdiX which suits my purposes fine and is free. has fair syntax highlighting for various languages
  10. Moonspell

    My CD rom light blinks but not reading

    what did you use to clean the lens? I had this and I had to strip the cdrom down and clean the lense with head cleaner. if still not reading is it more than one cd it won't read? if not then i suspect dodgy cd.
  11. Moonspell

    Do people learn PHP?

    I suppose there is a legitimate reason to use it somewhere but it all comes back to who will eventually use the code and for what. However, I made the mistake of getting embroiled in an arguement about something else here so I will chill. to get to the original question, do you mean how did i...
  12. Moonspell

    Do people learn PHP?

    I have to say that in some cases the answers are in the manual. quite often i am tempted to reply rtfm! however, in response to jimoblak, about chvol and his request for information - I do think it is important to keep people who are trying (or appear to be trying) to use information for non...
  13. Moonspell

    NT Authentication with IIS

    i never did get a resolution. i had to work it out for myself. i think people are reluctant to post this sort of thing as it can be abused!
  14. Moonspell

    NT Authentication with IIS

    Here's where to get the software look for the application called PsLoggedOn. I'm not going to post my code here cause it is site specific, but with a little work you can filter out all the junk and get the logged on user! also I have not been able to get the system to work by ip address yet...
  15. Moonspell

    NT Authentication with IIS

    Good luck to you! I asked about this some time ago and got no reply. I eventually went and got a 3rd party app and did a shell call to the app then stripped out the junk to get the domain authenticated user. sadly i don't have the info here as i am at home. will look for all the info and...
  16. Moonspell

    file_get_contents timeout?

    got this from the devshed forum. this checks if the server is there, then you would be able to get the file. can't see any way to get the file_get_contents timeout changed
  17. Moonspell

    file_get_contents timeout?

    from this i read if the file exists it will be read into a string variable otherwise the result will be false so i might use something like: ... code to define file, open it and try to read it .... if ($file_content <> "false") { perform additional code } hope this helps. i may be wrong as...
  18. Moonspell

    Program Stops after 10 Minutes

    rotflmao!!!![medal] chvol you can have a medal for your last post. I have to say it was the funniest thing i have read in a long time! Nope, never seen saturday night live so i have no idea what you are talking about. name the applications and name the book! Look here and you will see...
  19. Moonspell

    Program Stops after 10 Minutes

    do you really think you can burst the bubble of someone who has been a programmer for the last 20+ years? judging from the use of language in your posts I have been programming for longer than you have been alive! I not only program in PHP but also C++, Javascript, VBScript, Visual Basic...
  20. Moonspell

    file_get_contents timeout?

    are you asking this for if a file does not exist or if it is a large file? if (1) file does not exist then you will get an error. if (2) there does not appear to be a timeout on it. I have done a quick search and there is nothing mentioned about a timeout though i suspect the page run time...

Part and Inventory Search

Back
Top