Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=333187.0
  2. If you look at the manual page for the mail function there are examples of sending HTML emails.
  3. Do you know what Ajax is?
  4. What does firebug have to say?
  5. Yes it's possible. Hard? I wouldn't consider it so, but your not me. Time? 10 minutes, again, your time may differ.
  6. http://php.net/functions
  7. Depending on where the script is executing from you likely need to remove the http://dowmain.com/ part. Starting a path with a slash will mean php will look for the script in the root of the filesystem.
  8. Iv'e never heard of a PHP script being too large to process, there is more likely a problem with your code.
  9. Simple fix. Don't use urls as includes, use filesystem paths instead.
  10. Ive never bothered with any compilers, don't really see the point sorry.
  11. Then C: means nothing. The root of the Linux filesystem is represented by /
  12. Python, Ruby? Could be any of many different languages.
  13. There are plenty of PHP compilers around, have your searched Google?
  14. Filesystem paths are OS specific, your issue has nothing to do with Apache vs IIS. If default isn't part of any of your websites you are obviously using the wrong path.
  15. As soon as these values are passed to JavaScript (which would happen when your page was being created or via an Ajax call) they would be on the client-side and available for anyone to see. Not much you can do about that if you need them in your client side code.
  16. I don't see anywhere within that code where you actually query any ldap server?
  17. Looks like some Google plug in playing up on your end.
  18. This topic has been moved to PHPFreaks.com Questions, Comments, & Suggestions. http://www.phpfreaks.com/forums/index.php?topic=332896.0
  19. You seem to misunderstand how variable assignment works. Data is assigned to the item on the left of the = assignment operator, not the right. That means, in your example above the variable $name is being assigned the value from $_GET['sid'] not the other way around.
  20. Apache is no different to IIS, are sure the issue isn't Windows vs Linux?
  21. You should be using... if(isset($_SESSION['memberof'])){ instead of.... if($_SESSION['memberof']){ Be aware that indexes are case sensitive too. Have you set $_SESSION['memberof'] anywhere?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.