I have the following code which performs a sql select with a where condition involving an array.

I want subsequent queries (within the same code) to be performed using each unique value of the array

Here are the specifics:

This initial query begins the process by creating an array from which the following queries gets their conditional values.

$SQL = "SELECT clientID, servicearea FROM servicesrendered where servicearea like ' oil change%' group by clientID";
$r = mysql_query($SQL);
while ($row = mysql_fetch_array($r, MYSQL_ASSOC)) {
$clientID=$row['clientID'];
$clients[] = "$clientID";
//$array=array($client,"");
}
foreach($clients as  $client) {
$clientID = $client[0];

//$array = array("$client", "");
$list = "'". implode("','", $clients) ."'";
echo "$list";

$get_swork = "SELECT servicearea, date, customerid, clientID FROM servicesrendered WHERE servicearea=' Oil Change ' and clientID IN ($list)  order by id ASC limit 1";//limit 1 means the last entered

 $get_swork_res = mysql_query($get_swork); 

  if (mysql_num_rows($get_swork_res) > 0) 
  { 
     while ( $swork_info = mysql_fetch_array($get_swork_res)) 
    { 
      $servicearea = $swork_info['servicearea']; 
      $date = $swork_info['date']; 
      $customerid = $swork_info['customerid']; 
      $clientID = $swork_info['clientID'];

}
	}

In the $get_swork statement, the where condition produces the following:

WHERE servicearea=' Oil Change ' and clientID IN ('0927HD','3232','342DF','4FCDS','5437DC','543GD1','5455FV','54FD43','6736HD','87JFJ','DG9642','GDS34','RFFD43','TF42DC')

Now I have two subsequent queries that relies on variables from the preceding query, here are those queries

Denoted as Q1

$get_swork3 = "select * from ajax_client where customerid='$customerid'";//here we are pulling cell and email information from ajax client using the customer id from get_swork2. clientid is not recorded in ajax_client, so this statement is search by customer id
 $get_swork3_res = mysql_query($get_swork3); 

  if (mysql_num_rows($get_swork3_res) > 0) 
  { 
     while ( $swork3_info = mysql_fetch_array($get_swork3_res)) 
    { 
     $email =$swork3_info['email']; 
          }
}

Denoted as Q2

$get_swork2 = "select * from additional_cars where clientID='$clientID'";// order by id desc limit 1";
 $get_swork2_res = mysql_query($get_swork2); 

  if (mysql_num_rows($get_swork2_res) > 0) 
  { 
     while ( $swork2_info = mysql_fetch_array($get_swork2_res)) 
    { 
      $firstname = $swork2_info['firstname']; 
      $lastname = $swork2_info['lastname']; 
      $customerid = $swork2_info['customerid'];
      $dhtmlgoodies_category = $swork2_info['dhtmlgoodies_category']; 
      $dhtmlgoodies_subcategory = $swork2_info['dhtmlgoodies_subcategory']; 
      $caryear = $swork2_info['caryear']; 
      
 } // close foreach

My current task is to perform Q1 and Q2 with each unique array value in the initial query written at the top

Currently, Q1 performs this

select * from ajax_client where customerid='Bs6444'

and stops. I would like to select using the where condition of "customerid" of all associated ids generated in the array.

i.e: the values of array is ('0927HD','3232','342DF','4FCDS','5437DC' ect..), my initial query makes available a variable called $customerid='Bs6444' which is associated with $clientID='0927HD' (the same should happen with all values of the array). And thus,the same for both Q1 and Q2 above.

Is this doable? I know this may be way out of the stratosphere, but I hope there are some thoughts on this.

Any thoughts is very appreciated!
Mossa

Recommended Answers

All 14 Replies

I think you are making it little complicated, This could be achevied using joining the table. So please post following

1) your table structure and
2) input to php page
3) output format expected

Also tell me what is the difference between your customerid and clientid

I think you are making it little complicated, This could be achevied using joining the table. So please post following

1) your table structure and
2) input to php page
3) output format expected

Also tell me what is the difference between your customerid and clientid

Thank you very much for the reply;

To your request:

1: three tables
tbl: servicesrendered
id, servicearea, clientID(is actually a license plate#), customerid(account number), date

tbl 2: ajax_client (many columns, but only need the following)
email

tbl3: additional_cars (many columns, but only need the following)
firstname,lastname,car_make,car_model,caryear

2.input to php page, on this, I'm not following. could you please clarify?

3. there is no output format, the code will be ran using cron job. In the code, an email is to be sent once all the variables have been selected, passed and crossed check. Then, a mail function is written into the code to perform that task. this part works fine. I have ran some test with manually coding in some values.

if you like for me to post the entire code --about 315, I can PM it to you.

Again, thank you
Mossa

2.input to php page, on this, I'm not following. could you please clarify?

I mean any thing you pass like 'oil change' or anything else

3. there is no output format, the code will be ran using cron job. In the code, an email is to be sent once all the variables have been selected, passed and crossed check. Then, a mail function is written into the code to perform that task. this part works fine. I have ran some test with manually coding in some values.

If you have tested that what is the problem? please tell to whom you want to send mails. also tell me where is clientid/customernumber in ajax_client and additional_cars

I mean any thing you pass like 'oil change' or anything else


If you have tested that what is the problem? please tell to whom you want to send mails. also tell me where is clientid/customernumber in ajax_client and additional_cars

Thanks for the reply and for the clarification.

Actually, nothing is passed to the php page. the code is self contained and ran as cron job; whereas, I'm selecting all clientIDs (license plate numbers) from tbl servicesrendered where column servicearea= ' Oil Change ', and making them into an array, and then imploding them to create the variable $list. This variable is then used in the second query as follows:

$get_swork = "SELECT servicearea, date, customerid, clientID FROM servicesrendered WHERE servicearea=' Oil Change ' and clientID IN ($list)  order by id ASC limit 1";

. This query allows me to pull the other variable (ie: $date, $customerid)

You ask: "If you have tested that what is the problem?" by testing manually, I mean that if in the initial query, I replaced the array $list with a single clientID ('76dhff'), the complete script works. To get the mail to work, I have the following:

$timestamp = strtotime($date);// variable date is passed from the process above
$startDate=$timestamp; 
$limit=90;
$z=floor((time() - $startDate)/86400);
$days=$limit-abs($z);

//if remaining days equal to 0 perform the send the following email
if ($days == 0) 
{
//mail begins
         $fromAddr = 'noreply@autotechpro.net';
	 $today_date = date("M-d-Y"); 
	 $today_is =date('l, F j, Y');
	 $email2 ='admin@autotechpro.net';
	 $subjectStr = 'Courtsey Automatic Oil Change reminder';
	
$mailBodyText = <<< HHHHHHHHHHHHHH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>mail</title>
<style type="text/css">
            h1, h2, td, p {
                font-family: helvetica, arial, sans-serif;
            }
        </style>
</head>
  <body>
Dear $firstname $lastname:<p>
This is an automatic courtsey Oil Change reminder. Our records indicate that as of today, $today_is, your $dhtmlgoodies_category $dhtmlgoodies_subcategory is now due for an oil change!!!</p>
<table cellpadding='3'>
<tr><td colspan='4' align='left'><b>Vehicle Details</b></td></tr>
<tr>
<td bgcolor='#333333'><font color='#FFFFFF'>Car year</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Lic. plate #</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Last Oil Change Date</td>
</tr>
<tr>
<td style='color:#FF0000;'>$caryear</td>
<td style='color:#FF0000;'>$dhtmlgoodies_category</td>
<td style='color:#FF0000;'>$dhtmlgoodies_subcategory</td>
<td style='color:#FF0000;'>$clientID</td>
<td style='color:#FF0000;'>$date</td>
</tr>
</table>
<p>
Please contact the shop to schedule a visit, or simply stop by.<p>
Thank you,
</body>
</html>
HHHHHHHHHHHHHH;

$headers= <<< TTTTTTTTTTTT
Bcc:$email2
From: $fromAddr
MIME-Version: 1.0
Content-Type: text/html;
TTTTTTTTTTTT;

return mail( $recipientAddr , $subjectStr , $mailBodyText, $headers);
        
    }

clientID and customerid are in the both ajax_client and additional_cars tables. I hope this provides more clarity.

Again, thank you for your time on this.

Mossa

Help anyone!

Now I understand your problem as following. I hope I am right.

You want to send reminder mail to those customers who have changed vehicle oil 3 months back.

So I would follow given steps to achieve this.

1) select records which are getting 3 months old. today. (one single select query with proper join will extract all information required to send mail).

2) loop them to send mail (you already have mail logic, just you need to keep under loop).

Here is complete code, nothing else required, Here my first line is sql query, first lets run it in phpmyadmin, if it gives proper result than you may go for mail part. query may have some syntax error as I have no database here.

$get_swork2 = "select 
 ad.fistname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid, max(sr.date)  last_date
from servicesrendered sr inner join ajax_client aj on sr.clientId=aj.clientid and sr.customerid=aj.customerid
inner join additinal_cars ad on
sr.clientId=ad.clientid and sr.customerid=ad.customerid
where
sr.servicearea like '%Oil Change%' and trim(aj.email) <>''
having date_add(max(sr.date), interval 3 month)=current_date
group by
 ad.fistname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid";

 $get_swork2_res = mysql_query($get_swork2); 

  if (mysql_num_rows($get_swork2_res) > 0) 
  { 
     while ( $swork2_info = mysql_fetch_array($get_swork2_res)) 
    { 

/////fetch data
      $firstname = $swork2_info['firstname']; 
      $lastname = $swork2_info['lastname']; 
      $customerid = $swork2_info['customerid'];
      $dhtmlgoodies_category = $swork2_info['dhtmlgoodies_category']; 
      $dhtmlgoodies_subcategory = $swork2_info['dhtmlgoodies_subcategory']; 
      $caryear = $swork2_info['caryear']; 
      $recipientAddr=$swork2_info['email']; 

///////send mail
//mail begins
         $fromAddr = 'noreply@autotechpro.net';
	 $today_date = date("M-d-Y"); 
	 $today_is =date('l, F j, Y');
	 $email2 ='admin@autotechpro.net';
	 $subjectStr = 'Courtsey Automatic Oil Change reminder';
	
$mailBodyText = <<< HHHHHHHHHHHHHH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>mail</title>
<style type="text/css">
            h1, h2, td, p {
                font-family: helvetica, arial, sans-serif;
            }
        </style>
</head>
  <body>
Dear $firstname $lastname:<p>
This is an automatic courtsey Oil Change reminder. Our records indicate that as of today, $today_is, your $dhtmlgoodies_category $dhtmlgoodies_subcategory is now due for an oil change!!!</p>
<table cellpadding='3'>
<tr><td colspan='4' align='left'><b>Vehicle Details</b></td></tr>
<tr>
<td bgcolor='#333333'><font color='#FFFFFF'>Car year</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Lic. plate #</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Last Oil Change Date</td>
</tr>
<tr>
<td style='color:#FF0000;'>$caryear</td>
<td style='color:#FF0000;'>$dhtmlgoodies_category</td>
<td style='color:#FF0000;'>$dhtmlgoodies_subcategory</td>
<td style='color:#FF0000;'>$clientID</td>
<td style='color:#FF0000;'>$date</td>
</tr>
</table>
<p>
Please contact the shop to schedule a visit, or simply stop by.<p>
Thank you,
</body>
</html>
HHHHHHHHHHHHHH;

$headers= <<< TTTTTTTTTTTT
Bcc:$email2
From: $fromAddr
MIME-Version: 1.0
Content-Type: text/html;
TTTTTTTTTTTT;

 mail( $recipientAddr , $subjectStr , $mailBodyText, $headers);







      
 } // close foreach

urtrivedi, I really appreciate your follow up and your rewrite of the code. Your understanding is dead-on!

One additional caveat, my intention is to send emails at certain date interval -in particularly 3 reminders. My thoughts were: using the value of each record's date value and apply the following code:

$timestamp = strtotime($date);
$startDate=$timestamp; 
$limit=90;//the number of days counting down from
$z=floor((time() - $startDate)/86400);
$days=$limit-abs($z);

with the above, I'm able to determine the number of days that are either left before the three months are up or have past for each client.

and then where true, construct the following if statements and send email:

if ($day == 0)
{//send Oil Change Now due email)
}
if ($days == 5)
{//send Oil Change due in five days email)
}
//and
if ($days == -15)//if past 15 days
{//send Oil Change is now  15 days overdue email)
}

Theoretically, this is how I see it, but not sure how this would be incorporated in your code rewrite.

I appreciate any further thoughts on this.

PS:
Concerning the sql,I run it through phpmyadmin and it returns the following error:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '$get_swork2 = "select ad.fistname, ad.lastname, ad.customerid, ad.dhtmlgoodies_c' at line 1

I'm not very familiar with that strategy of join sql construct, so I'm not sure what's wrong?

Again, thank you very much for the superb help!
Mossa

Karthik_pranas, thanks for your post and concern! Actually, it did not. My theoretical idea seemed a bit more complicated than I imagined.

Can you deduce anything from what I have written and the suggestion of urtrivedi in this current post?

I appreciate any further thoughts on this.

Best,
Mossa

Got the sql error initial reported resolved, but now the query returns zero results.
the modified sql:

$get_swork2 = "select ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid, max(sr.date)  last_date from servicesrendered sr inner join ajax_client aj on sr.clientID=aj.clientID and sr.customerid=aj.customerid  inner join additional_cars ad on sr.clientID=ad.clientID and sr.customerid=ad.customerid where sr.servicearea=' Oil Change ' and trim(aj.email) <>'' having date_add(max(sr.date), interval 1 month) =current_date order by ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid";

There are records with the necessary criteria. any thoughts!

If your data is not confidential, then go to phpmyadmin, export all four tables used in sql format, and attach that file here. I will run this query here and let you know the solution.

We will also manage 3 reminders in same code

If your data is not confidential, then go to phpmyadmin, export all four tables used in sql format, and attach that file here. I will run this query here and let you know the solution.

We will also manage 3 reminders in same code

Excellent, the sql dump is attached!

Thanks,
Mossa

I think this should work now, check query first.

$get_swork2 = "select ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid, datediff(current_date,max(sr.date))  days_passed ,max(sr.date) last_date
from servicesrendered sr 
inner join additional_cars ad on sr.customerid=ad.customerid and sr.clientid=ad.clientid
inner join ajax_client aj on sr.customerid=aj.customerid 
where sr.servicearea=' Oil Change ' and trim(aj.email) <>''  group by ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid";

 $get_swork2_res = mysql_query($get_swork2); 

  if (mysql_num_rows($get_swork2_res) > 0) 
  { 
     while ( $swork2_info = mysql_fetch_array($get_swork2_res)) 
    { 

/////fetch data
      $firstname = $swork2_info['firstname']; 
      $lastname = $swork2_info['lastname']; 
      $customerid = $swork2_info['customerid'];
      $dhtmlgoodies_category = $swork2_info['dhtmlgoodies_category']; 
      $dhtmlgoodies_subcategory = $swork2_info['dhtmlgoodies_subcategory']; 
      $caryear = $swork2_info['caryear']; 
      $recipientAddr=$swork2_info['email']; 
      $days_passed=$swork2_info['days_passed'];
      $date=$swork2_info['last_date'];
 
    /*  
     //following php code not requied now so commented
     $timestamp = strtotime($date);
      $startDate=$timestamp; 
      $limit=90;//the number of days counting down from
      $z=floor((time() - $startDate)/86400);
      $days_left=$limit-abs($z);*/

      if ($days_passed == 90)
      {
        $subject=" no days";

      }
      else if ($days_passed == 85)
      {

         $subject="5 days"  ;
      }

      else if ($days_passed == 105)//if past 15 days
      {
	 $subject="15 days";
         
      }
      else
      {
          continue;//we do not want to send mail if its not 0, 5 or -15, go to next record
      }




///////send mail
//mail begins
         $fromAddr = 'noreply@autotechpro.net';
	 $today_date = date("M-d-Y"); 
	 $today_is =date('l, F j, Y');
	 $email2 ='admin@autotechpro.net';
	 $subjectStr = 'Courtsey Automatic Oil Change reminder';
	
$mailBodyText = <<< HHHHHHHHHHHHHH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>mail</title>
<style type="text/css">
            h1, h2, td, p {
                font-family: helvetica, arial, sans-serif;
            }
        </style>
</head>
  <body>
Dear $firstname $lastname:<p>
This is an automatic courtsey Oil Change reminder. Our records indicate that as of today, $today_is, your $dhtmlgoodies_category $dhtmlgoodies_subcategory is now due for an oil change!!!</p>
<table cellpadding='3'>
<tr><td colspan='4' align='left'><b>Vehicle Details</b></td></tr>
<tr>
<td bgcolor='#333333'><font color='#FFFFFF'>Car year</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Lic. plate #</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Last Oil Change Date</td>
</tr>
<tr>
<td style='color:#FF0000;'>$caryear</td>
<td style='color:#FF0000;'>$dhtmlgoodies_category</td>
<td style='color:#FF0000;'>$dhtmlgoodies_subcategory</td>
<td style='color:#FF0000;'>$clientID</td>
<td style='color:#FF0000;'>$date</td>
</tr>
</table>
<p>
Please contact the shop to schedule a visit, or simply stop by.<p>
Thank you,
</body>
</html>
HHHHHHHHHHHHHH;

$headers= <<< TTTTTTTTTTTT
Bcc:$email2
From: $fromAddr
MIME-Version: 1.0
Content-Type: text/html;
TTTTTTTTTTTT;

 mail( $recipientAddr , $subjectStr , $mailBodyText, $headers);







      
 } // close foreach

I think this should work now, check query first.

$get_swork2 = "select ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid, datediff(current_date,max(sr.date))  days_passed ,max(sr.date) last_date
from servicesrendered sr 
inner join additional_cars ad on sr.customerid=ad.customerid and sr.clientid=ad.clientid
inner join ajax_client aj on sr.customerid=aj.customerid 
where sr.servicearea=' Oil Change ' and trim(aj.email) <>''  group by ad.firstname, ad.lastname, ad.customerid, ad.dhtmlgoodies_category, ad.dhtmlgoodies_subcategory, ad.caryear, aj.email, sr.servicearea, sr.clientID, sr.customerid";

 $get_swork2_res = mysql_query($get_swork2); 

  if (mysql_num_rows($get_swork2_res) > 0) 
  { 
     while ( $swork2_info = mysql_fetch_array($get_swork2_res)) 
    { 

/////fetch data
      $firstname = $swork2_info['firstname']; 
      $lastname = $swork2_info['lastname']; 
      $customerid = $swork2_info['customerid'];
      $dhtmlgoodies_category = $swork2_info['dhtmlgoodies_category']; 
      $dhtmlgoodies_subcategory = $swork2_info['dhtmlgoodies_subcategory']; 
      $caryear = $swork2_info['caryear']; 
      $recipientAddr=$swork2_info['email']; 
      $days_passed=$swork2_info['days_passed'];
      $date=$swork2_info['last_date'];
 
    /*  
     //following php code not requied now so commented
     $timestamp = strtotime($date);
      $startDate=$timestamp; 
      $limit=90;//the number of days counting down from
      $z=floor((time() - $startDate)/86400);
      $days_left=$limit-abs($z);*/

      if ($days_passed == 90)
      {
        $subject=" no days";

      }
      else if ($days_passed == 85)
      {

         $subject="5 days"  ;
      }

      else if ($days_passed == 105)//if past 15 days
      {
	 $subject="15 days";
         
      }
      else
      {
          continue;//we do not want to send mail if its not 0, 5 or -15, go to next record
      }




///////send mail
//mail begins
         $fromAddr = 'noreply@autotechpro.net';
	 $today_date = date("M-d-Y"); 
	 $today_is =date('l, F j, Y');
	 $email2 ='admin@autotechpro.net';
	 $subjectStr = 'Courtsey Automatic Oil Change reminder';
	
$mailBodyText = <<< HHHHHHHHHHHHHH
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>mail</title>
<style type="text/css">
            h1, h2, td, p {
                font-family: helvetica, arial, sans-serif;
            }
        </style>
</head>
  <body>
Dear $firstname $lastname:<p>
This is an automatic courtsey Oil Change reminder. Our records indicate that as of today, $today_is, your $dhtmlgoodies_category $dhtmlgoodies_subcategory is now due for an oil change!!!</p>
<table cellpadding='3'>
<tr><td colspan='4' align='left'><b>Vehicle Details</b></td></tr>
<tr>
<td bgcolor='#333333'><font color='#FFFFFF'>Car year</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Car Make</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Lic. plate #</td>
<td bgcolor='#333333'><font color='#FFFFFF'>Last Oil Change Date</td>
</tr>
<tr>
<td style='color:#FF0000;'>$caryear</td>
<td style='color:#FF0000;'>$dhtmlgoodies_category</td>
<td style='color:#FF0000;'>$dhtmlgoodies_subcategory</td>
<td style='color:#FF0000;'>$clientID</td>
<td style='color:#FF0000;'>$date</td>
</tr>
</table>
<p>
Please contact the shop to schedule a visit, or simply stop by.<p>
Thank you,
</body>
</html>
HHHHHHHHHHHHHH;

$headers= <<< TTTTTTTTTTTT
Bcc:$email2
From: $fromAddr
MIME-Version: 1.0
Content-Type: text/html;
TTTTTTTTTTTT;

 mail( $recipientAddr , $subjectStr , $mailBodyText, $headers);







      
 } // close foreach

Urtrivedi:

Right on, my friend! You have helped me navigate through this task. The code as modified, is now working as envisioned. can't thank you enough...

The very best,
Mossa

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.