Search results

  1. quantum1

    Javascript Help

    I checked your html link above and your html does not have any reference to a field named "gender".
  2. quantum1

    Shout Box

    <?php // define function that will output text with dos newlines so that view // source will show human readable html; f_say will be used in place of // php echo statement when generating html function f_say($text) { echo $text."\r\n"; } f_say("<table style=\"width: 40%...
  3. quantum1

    C Dynamic String Allocation

    I believe the code for(i=0;i<strlen(old_str)-1;i++){ should be for(i=0;i<strlen(old_str);i++){
  4. quantum1

    PHP on LocalHost

    "httpd.exe: Syntax error on line 127 of C:/Program Files/Apache Software Foundati on/Apache2.2/conf/httpd.conf: LoadModule takes two arguments, a module name and the name of a shared object file to load it from Note the errors or messages above, and press the <ESC> key to exit. 10..." What are...
  5. quantum1

    about array_diff

    What error are you getting?
  6. quantum1

    Php

    when hover are you talking about the link below? http://www.mattkruse.com/javascript/mktree/
  7. quantum1

    PHP Parse Syntax Error

    If you have index.html and index.php in the same directory, I believe if a visitor goes to your site and does not specify a file (www.blahblah.com as opposed to www.blahblah.com/index.php) then it will find the index.html first. The information below is from the cpanel getting started wizard in...
  8. quantum1

    How to ping in PHP

    The link below also seems to be what you are looking for. It is a ping.php routine. http://www.greenbird.info/xantus-webdevelopment/ping
  9. quantum1

    need some help?

    I have had problems before where my php script had an error and I got a blank page. This happens when all my html is php generated. The script fails and no html is generated so I get a blank page.
  10. quantum1

    Php

    This link may get your started: http://www.mattkruse.com/javascript/mktree/
  11. quantum1

    reading pdf files with php

    By read do you mean read in the text content within the pdf file? That is, read the pdf file as if it were a text file? The question may sound obvious but I just want to clarify.
  12. quantum1

    User Page

    If the user information is already in a database you just need a web page that runs a query based on optional input from a form. I am not sure what you mean by not taking up any disk space. If you give more information about your situation and what your are trying to do then we can give a...
  13. quantum1

    Cannot use string offset as an array in...

    Please show us the source code where you define the $items array. Also, a more complete description of the error and so forth is needed.
  14. quantum1

    PHP Parse Syntax Error

    I believe your <? echo "$result"; ?> should be <?php echo "$result"; ?>
  15. quantum1

    select onchange

    No freecrm! Don't do it!!! Go with http://www.ultraedit.com :)
  16. quantum1

    Password one way encryption.

    I searched on Scoochi2's idea and found the following at http://us.php.net/crypt <?php $password = crypt('mypassword'); // let the salt be automatically generated /* You should pass the entire results of crypt() as the salt for comparing a password, to avoid problems when different hashing...
  17. quantum1

    Best PHP editor:

    UltraEdit or even better UEStudio is the only editor you will ever need for just about anything. I have also found that UltraCompare is an incredible if not the best compare tool. Then there is TopStyle for stylesheet editing. And last, but not least, is CSE HTML Validator, a professional...
  18. quantum1

    Password one way encryption.

    Vague answer shown below. :) I have seen this done before as follows: 1) Some algorithm or software is used to encrypt the password into the db. 2) User receives email with password. 3) User goes back and re-enters password to verify. 4) Web site program uses same encryption technique to...
  19. quantum1

    select onchange

    This link might be what you are looking for: http://www.pageresource.com/jscript/jwinopen.htm
  20. quantum1

    [PHP] Using it in forms!

    Well...this may be an issue... In your SQL statement you have: SELECT username FROM 'login' Should the 'login' be in quotes? Quotes are needed for the values in the where clause and so forth, but I don't know about the table name itself. Try removing the quotes around 'login' so that it...
Top