PHP Preloaded Function not working.

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
lawrence_chtan
Forum Newbie
Posts: 22
Joined: Mon Jan 02, 2006 8:20 pm
Location: SINGAPORE

PHP Preloaded Function not working.

Post by lawrence_chtan »

Hi

I am a Information Technology's Student, :D I am implementing the Project using PHP. I am quite puzzle. whether i had installed the PHP 5 or the Easyphp 1.7 wrongly.

I noticed certain function. I could not utilised like 8O

PHP5
-> Fopen()

PHP5 or EasyPHP 1.7
-> mail()

Do i miss up anything during the installation process? I had pasted all the relevent DLL into the "Ext" Folder. Anything i will have to take note?

Thanks for the comment.

Any coding i could used to check. What is the pre-defined function available for me in my PHP Compiler.

example:

phpinfo();

Your comment will be greatly appreciated. :wink:
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

neither of the functions require any additional extensions. mail() requires sendmail or an SMTP server, depending on your server OS. fopen() should work, provided you called it correctly, and php has the permissions necessary to access the file you are requesting. Post your code so we may know more about how you are using them to find details you may have missed.
Post Reply