Search results

  1. O

    PHP mail ???

    Hi noivel, can you outline how you get the PHP Mail function to work with this hosting? I cant edit the PHP.ini file, so I do not know what to do! Thanks
  2. O

    Getting Email to Work - PHP

    Please bare with me if these questions sound so stupid! Only just learnt PHP/SQL! I am now mucking around with the mail() function in PHP: <?php $to = "openforum@gmail.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; if (mail($to, $subject, $body)) {...
  3. O

    PEAR Packages

    OMG...the script works! Thank you xav0989 and descalzo for the awesome help! Now I can show my lecturer my web development to complete my thesis! Thank you all!
  4. O

    PEAR Packages

    Thanks, I did what was suggested above and got the following error: Fatal error: Call to undefined function include_path() This is what is in my script: <?php //Set PEAR Directory set_include_path('/home/openforum/PEAR/PEAR' . PATH_SEPARATOR . include_path()); // include class...
  5. O

    PEAR Packages

    Thanks for all the helpful responses. I just went ahead with the install and it was fine. I have installed the PEAR files in the upper most level, in the same directory level as: public_html in the folder PEAR. Upon completing the installation, the files are stored in: PEAR/PEAR/...
  6. O

    PEAR Packages

    Hi, just wondering how would I go about installing the following two PEAR packages: PEAR::Spreadsheet_Excel_Writer and PEAR::OLE Thanks Dave
Top