[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

03/18/2004 at 05:30AM PST, ID: 20923294
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

3.8

URGENT! I need to be able to send mail using SMTP

Asked by DataCom2003 in PHP for Windows

Tags: function

Hello,
I have a php script that I haft to run on windows and have been told by the host to use the SMTP to send email from php.

I have 3 pages that I need to modify.

I will post 1 and hopefully I will be able to do the other 3 pages after this one is converted to use SMTP.

They also said to use mail.yourdomain.com for your smtp mail server.
I am not sure if I need to use authentication.

I would appreciate someone's help on this as this site is going to be active today.

<?
if ($notification == "yes" && $validate == "no") {
$recipient .= "$username <$email>";
$headers .= "From: $sitename <$admin>\n";
if ($email != "" && $email != "null@null") mail($recipient, $subjectmail, $notifmail, $headers);
}

if ($validate == "yes") {
$vcodemail = ereg_replace ("VCODE", $valcode, $vcodemail);
$vcodemail = ereg_replace ("USERNAME", $username, $vcodemail);
$vcodemail .= $notifmail;
$recipient .= "$username <$email>";
$headers .= "From: $sitename <$admin>\n";
if ($email != "" && $email != "null@null") mail($recipient, $subjectmail, $vcodemail, $headers);
}

?>


I copied this from the page below as I think this is the email functions. it was working fine on linux, but needs to work on Windows using SMTP.




<?

// Image manipulation feature.  Only works on JPGs and on servers that support GD
$addwhat=0; // Add what to uploaded Images?  See next line
// (0=nothing!, 1 = Logo (tag.jpg), 2 = text string
$logoh = "12"; // logo height if adding a logo (tag.jpg)

require "admin/config.php";
langprocess();
langlogin();
langmail();

function fileextension($filename) {
      return substr(basename($filename), strrpos(basename($filename),
".") + 1);
}

function addlogo()
{
global $dest,$string,$logoh,$addwhat;

if ($addwhat > 0) {

$im = imagecreatefromjpeg($dest);
$imwidth = imagesx($im);
$imheight = imagesy($im);
$txtpl = ($imwidth-7.5*strlen($string))/2;
$tag = imagecreatefromjpeg("./tag.jpg");
imagefilledrectangle ($im, 0, ($imheight-$logoh), $imwidth, $imheight, 0);
if ($addwhat==1) ImageCopy ($im, $tag, $txtpl, ($imheight-$logoh), 0, 0, 126, $logoh);
else ImageString($im,5,$txtpl,($imheight-($logoh-5)),$string,1);
ImageJpeg($im, $dest, 95);
}
}
   
function userexists($username)
{
      $sql = "select name from $GLOBALS[usertable] where name='$username'";
    mysql_connect($GLOBALS[host],$GLOBALS[user],$GLOBALS[pass]);
    @mysql_select_db($GLOBALS[database]) or die( "Unable to select database userexisits");
      $query = mysql_query($sql);
      $rows = mysql_num_rows($query);
        mysql_close ();
      if ($rows > 0)
            return 1;
      return 0;
}

function sitexists($url)
{
      $sql = "select url from $GLOBALS[imagetable] where url='$url'";
    mysql_connect($GLOBALS[host],$GLOBALS[user],$GLOBALS[pass]);
    @mysql_select_db($GLOBALS[database]) or die( "Unable to select database sitexists");
      $query = mysql_query($sql);
      $rows = mysql_num_rows($query);
        mysql_close ();
      if ($rows > 0)
            return 1;
      return 0;
}

function is_uploaded_fil($filename) {  // function for PHP versions < 4.0.3
 
  if (!$tmp_file = get_cfg_var('upload_tmp_dir')) {
        $tmp_file = dirname(tempnam('', ''));
    }
    $tmp_file .= '/' . basename($filename);
    return (ereg_replace('/+', '/', $tmp_file) == $filename);
}


$username = strtolower($username);
if(!$username) { $message .= NOUSERNAME."<br>";}
if(!$password) { $message .= NOPASS."<br>"; }
if(!$email == "" && (!strstr($email,"@") || !strstr($email,".")))  $message .= ENTEREMAIL."<BR>";

if ($submitpic != "no" ) {if((strlen($url) <= 8) && !$userpic)  $message .= NOURL."<br>";}

// if(!$age)  $message .= "Your age was not entered.<br>";
if(!$category)  $message .= NOCAT."<br>";
if ($submitpic != "no") {if(!$describe)  $message .= NODESCRIP."<br>";}
if(!$self)  $self=5;
if (userexists($username)) $message .= USEREXISTS."<br>";
if (sitexists($url) && !$userpic && $submitpic != "no") $message .= IMGEXISTS."<br>";
if (isset($aself)) $message .= "<br><ID#>";
$resize = "no";
if (!isset($submitpic)) $submitpic ="yes";

if ($submitpic == "yes") {

if (strlen($url) <= 8 && $allowupload != 0) {  // begin file upload routine
$source = $HTTP_POST_FILES['userpic']['tmp_name'];
$origname = $HTTP_POST_FILES['userpic']['name'];

$dest = '';

if (($source != 'none') && ($source != '' )) {
$ext = fileextension($origname);
$newfile = uniqid('img').'.'.$ext;
$dest = $uploadpath.$newfile;
if (ereg( "[4-9]\.[0-9]\.[3-9].*", phpversion() ) || ereg( "[4-9]\.[1-9]\.[0-9].*", phpversion() )) {
        if ( $dest != '' ) {
             if ( move_uploaded_file( $source, $dest ) ) {$url = $uploadurl.$newfile;}
             else $message .=  FILENOTSTORED."<BR>";
if (isset($chmod)) chmod ($dest, 0755);   // some servers will require this line

        }
   }
         else {if ( $dest != '' ) {
              if (is_uploaded_fil($source)) { copy($source, $dest); $url = $uploadurl.$newfile;}
if (isset($chmod)) chmod ($dest, 0755);   // some servers will require this line
              }}

          } else $message =  FILETOOBIG;


$imagesize = @getimagesize($dest);

switch ( $imagesize[2] ) {
           case 1:
             break;
            case 2:
                addlogo();
                $jpg = 1;
                break;
            case 3:
                 break;
               default:
               $message = INVALIDIMG;
                           @unlink($dest);
                break;
               }


if ( $imagesize[0] > $imgsize) $resize = "yes";
if ( $source_size > ($uploadsize * 1024) ) $message .= FILETOOBIG;
if ( filesize($dest) > ($uploadsize * 1024) ) { unlink($dest); $message .= FILETOOBIG; }

}  // end file upload routine
}

if ($message) { errormsg ($message); exit; }

$status = WAITING;

if ($validate == "yes") {
srand ((double) microtime() * 1000000);
$valcode = "";$i=0;
while($i<8)  {$valcode .= chr((rand()%26)+97); $i++; }
}
else $valcode = "ok";


mysql_connect($host,$user,$pass);
@mysql_select_db($database) or die( "Unable to select database");
mysql_query("INSERT INTO $usertable (name, password, age, category, homepage, self, email, notifypriv, validate, joindate) VALUES('$username','$password','$age','$category','$homepage','$self','$email','$notifypriv','$valcode', CURRENT_TIMESTAMP)") or die(mysql_error());

for ($i=1; $i < 21; $i++)
 { $marker = "info".$i; $markdat = $$marker;
if (strlen($markdat) > 0) mysql_query("UPDATE $usertable SET $marker = '$markdat' where name = '$username'") or die(mysql_error());
 }

if ($submitpic != "no") {mysql_query("INSERT INTO $imagetable (name, url, category, description, notifypub, self, total, rate, average, resize, status, reason)
                         VALUES('$username','$url','$category','$describe','$notifypub','$self','1','$self','$self','$resize','$status','new')") or die(mysql_error());

$newid = mysql_insert_id();


}
mysql_close ();

header ("Set-Cookie: logged=$username; expires=Friday, 16-Jan-2037 00:00:00 GMT; path=/;");
?>
<html>
<head>
<title><?=$sitetitle?></title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#006699" alink="#000000" vlink="#000000" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" rightmargin="0">
<br>
<table border=0 cellpadding=0 cellspacing=0 width="500" align="center">
  <center>
    <tr bgcolor="#375288">
      <td>
        <table border=0 cellspacing=1 cellpadding=4 width="100%" align="center">
          <tr>
            <td valign="top" colspan="2" bgcolor="#f7f7f7">
              <div align="center" class="topper">
                <p><font size="3" face="Verdana, Arial, Helvetica, sans-serif"><b><? echo PICSREV;?></b></font></p>
              </div>
              <p><font face="Arial"><big><font face="Arial, Helvetica, sans-serif" size="2"><? echo WELCOMETO."<br>".THANKU2;?></font></big></font></p>
              <p><font face="Arial, Helvetica, sans-serif" size="2"><? echo HEREINFO; ?></font></p>
              <p><font face="Arial, Helvetica, sans-serif" size="2"><? echo USERNAME." ".$username; ?></font></p>
              <p><font face="Arial, Helvetica, sans-serif" size="2"><? echo PASSSWORD." ".$password; ?></font></p>
              <form method="POST" action="<?=$loginphp?>">
                <font face="Arial, Helvetica, sans-serif" size="2">
                <input type="hidden" name="loginpw" value="<?=$password?>">
                <input type="hidden" name="loginuser" value="<?=$username?>">
                <input type="hidden" name="go" value="vote">
                </font>
                <p> <font face="Arial, Helvetica, sans-serif" size="2">
                  <input type="submit" value="<? echo LOGINNOW;?>">
                  </font></p>
              </form>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </center></table>
<center>
  <table border="0" width="760" cellpadding="5" cellspacing="0">
    <tr bgcolor="#ffffff">
      <td valign="center" align="center"> <font size="1" face="Verdana, Arial" color="#000000"><? echo POWEREDBY; ?><a href="http://www.ratemematchme.com/">ratemematchme</a></font><br>
        <br>
      </td>
    </tr>
  </table>
</center>
</body>
</html>
<?
if ($notification == "yes" && $validate == "no") {
$recipient .= "$username <$email>";
$headers .= "From: $sitename <$admin>\n";
if ($email != "" && $email != "null@null") mail($recipient, $subjectmail, $notifmail, $headers);
}

if ($validate == "yes") {
$vcodemail = ereg_replace ("VCODE", $valcode, $vcodemail);
$vcodemail = ereg_replace ("USERNAME", $username, $vcodemail);
$vcodemail .= $notifmail;
$recipient .= "$username <$email>";
$headers .= "From: $sitename <$admin>\n";
if ($email != "" && $email != "null@null") mail($recipient, $subjectmail, $vcodemail, $headers);
}

?>



Thanks,
DataCom2003
[+][-]03/18/04 05:35 AM, ID: 10623557

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 07:24 AM, ID: 10624685

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 08:06 AM, ID: 10625121

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 08:16 AM, ID: 10625219

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 08:29 AM, ID: 10625327

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 08:32 AM, ID: 10625354

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 09:17 AM, ID: 10625727

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 09:21 AM, ID: 10625755

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 09:55 AM, ID: 10626021

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 09:59 AM, ID: 10626047

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 10:05 AM, ID: 10626092

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 10:19 AM, ID: 10626199

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 10:31 AM, ID: 10626302

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 10:55 AM, ID: 10626500

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 11:44 AM, ID: 10626914

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 11:56 AM, ID: 10627026

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 12:10 PM, ID: 10627135

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 12:15 PM, ID: 10627179

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 12:22 PM, ID: 10627242

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 12:51 PM, ID: 10627535

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 01:18 PM, ID: 10627787

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/18/04 01:43 PM, ID: 10628054

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/18/04 02:10 PM, ID: 10628333

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 06:12 AM, ID: 10633045

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 06:46 AM, ID: 10633331

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 08:30 AM, ID: 10634251

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 09:11 AM, ID: 10634698

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 09:18 AM, ID: 10634756

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 09:34 AM, ID: 10634888

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 09:36 AM, ID: 10634908

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 09:40 AM, ID: 10634936

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 09:48 AM, ID: 10635032

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 09:55 AM, ID: 10635088

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 10:01 AM, ID: 10635148

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 10:44 AM, ID: 10635585

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 10:54 AM, ID: 10635674

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 11:06 AM, ID: 10635794

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 11:08 AM, ID: 10635821

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 11:25 AM, ID: 10635979

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 11:38 AM, ID: 10636106

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 11:49 AM, ID: 10636192

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 11:51 AM, ID: 10636212

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 12:24 PM, ID: 10636525

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 01:10 PM, ID: 10636919

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 01:12 PM, ID: 10636940

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/19/04 01:16 PM, ID: 10636969

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 01:34 PM, ID: 10637112

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/19/04 01:48 PM, ID: 10637184

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/22/04 10:27 AM, ID: 10651330

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/22/04 11:45 AM, ID: 10651965

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/22/04 12:01 PM, ID: 10652124

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03/28/04 11:00 PM, ID: 10701908

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06/24/04 12:54 PM, ID: 11392794

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06/28/04 09:40 AM, ID: 11417351

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: PHP for Windows
Tags: function
Sign Up Now!
Solution Provided By: Netminder
Participating Experts: 2
Solution Grade: A
 
 
 
Loading Advertisement...
20090824-EE-VQP-74