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 TouchToneTommy 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. xhtml101

    passing passwords in GET mode

    The best way is to use SESSION. This a server-side vars and are never displayed on the client site. Check this doc: http://ca.php.net/session Hope this help! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  2. xhtml101

    unix user authentication

    Use this to set a term environment before calling su... some unix command need a TERM env.: from: http://php.us.themoes.org/manual/en/function.exec.php <?php exec('TERM=xterm /usr/bin/top n 1 b i', $top, $error ); echo nl2br(implode(&quot;\n&quot;,$top)); if ($error){ exec('TERM=xterm...
  3. xhtml101

    How to read from a file??

    <?PHP $fd=fopen(&quot;/tmp/afile&quot;,&quot;r&quot;); while ($line=fgets($fd,1000)) { $alltext.=$line; } fclose ($fd); ?> Hope this help! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  4. xhtml101

    Restricting php use

    Disable .php files in httpd.conf??? Or something like DENY EXECGI in the httpd.conf This is just a suggestion :) Hope this help! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  5. xhtml101

    first xhtml web site

    What do u think of my first xhtml we site? http://www.abusinesshosting.com/
  6. xhtml101

    new xhtml web site

    Hi! I've done my first xhtml web site. http://www.abusinesshosting.com I must admin that I like xhtml. Its very clear and consive. If you have some comment, let me know :)
  7. xhtml101

    CD-Burning Question

    What dont u program a php script to do that using linux console burning tool? Im sure freshmeat has some interesting software from you. Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  8. xhtml101

    Red Hat OS Problem

    Ive seen this problem on a SCSI harddrive. Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  9. xhtml101

    Running a Linux server with my home network??

    1. Can I link this 466 computer to my router so it is connected to the web and my home network? Yes defenitly!! You can do that! 2. Then if I can do that. Can I install FileMaker Server on the 466? No you can't. First, its old and its for W32. 3. If I can do all this. How hard is it to run...
  10. xhtml101

    How to redirect ?

    The header(&quot;Location: newsite&quot;); has to be BEFORE anything has been send to the client!!! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  11. xhtml101

    save an email attachment to the server

    What library do u use for getting email message? Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  12. xhtml101

    XP-Apache-Php

    I think the problem might be in php.ini Check for php_track_vars in php.ini or the string --enable-track-vars in the output of php_info(); You can access $Ing using GLOBAL[$Ing]. Hope this help! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com http://www.abusinesshosting.com
  13. xhtml101

    run commands from operating system

    You should use the PHP command &quot;EXEC&quot; exec(&quot;dir c:&quot;); echo &quot;script completed&quot;; exec returns a string so you should be able to do $var = exec(&quot;dir&quot;); echo $var; Hope this help! Sincerely, Dan Grant Lead programmer dan at abusinesshosting dot com...

Part and Inventory Search

Back
Top