Home > Archive > PHP Language > January 2006 > While Loop Question...
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
While Loop Question...
|
|
|
| Hi All
I'm trying to create a loop in PHP which will do the following for me :-
1. Get a count of rows from a table where the current time is greater than
the expired_time.
2. Based on that, we need to get the customercode from that table, to be
able to get an e-mail address from another table where the customercode
matches.
3. Send a notification to the email address to inform the client that the
time has expired.
For now, I have left out the e-mail address part as well as the actual
e-mail sending part. I guess that will happen in the same loop. For now, I
am just trying to get a list of the customercodes. Don't know if i'm on the
right track here...
<?
include "../includes/mysqlcon.php";
echo "hello...";
$current_time = date("Y-m-d H:i:s");
$count = mysql_query("SELECT count(nid) FROM nack_ack where '$current_time'
> date_expired");
$numrows = mysql_num_rows($count);
$i = 1;
while ($i <= $numrows) {
$querycustomercode = mysql_fetch_row(mysql_query("SELECT * from nack_ack
WHERE nid = '$i'"));
$customercode = $querycustomercode[1];
echo $customercode;
}
?>
| |
| Tim Streater 2006-01-23, 7:55 am |
| In article <dr25dm$jpf$1@ctb-nnrp2.saix.net>, "GM" <maillist@gam.co.za>
wrote:
> Hi All
>
> I'm trying to create a loop in PHP which will do the following for me :-
>
> 1. Get a count of rows from a table where the current time is greater than
> the expired_time.
> 2. Based on that, we need to get the customercode from that table, to be
> able to get an e-mail address from another table where the customercode
> matches.
> 3. Send a notification to the email address to inform the client that the
> time has expired.
>
> For now, I have left out the e-mail address part as well as the actual
> e-mail sending part. I guess that will happen in the same loop. For now, I
> am just trying to get a list of the customercodes. Don't know if i'm on the
> right track here...
>
> <?
> include "../includes/mysqlcon.php";
> echo "hello...";
>
> $current_time = date("Y-m-d H:i:s");
>
> $count = mysql_query("SELECT count(nid) FROM nack_ack where '$current_time'
> $numrows = mysql_num_rows($count);
>
> $i = 1;
>
> while ($i <= $numrows) {
>
> $querycustomercode = mysql_fetch_row(mysql_query("SELECT * from nack_ack
> WHERE nid = '$i'"));
> $customercode = $querycustomercode[1];
>
> echo $customercode;
>
> }
> ?>
You are not incrementing $i in the loop anywhere, so it will run forever.
-- tim
| |
| J.O. Aho 2006-01-23, 7:55 am |
| GM wrote:
> Hi All
>
> I'm trying to create a loop in PHP which will do the following for me :-
>
> 1. Get a count of rows from a table where the current time is greater than
> the expired_time.
> 2. Based on that, we need to get the customercode from that table, to be
> able to get an e-mail address from another table where the customercode
> matches.
> 3. Send a notification to the email address to inform the client that the
> time has expired.
>
> For now, I have left out the e-mail address part as well as the actual
> e-mail sending part. I guess that will happen in the same loop. For now, I
> am just trying to get a list of the customercodes. Don't know if i'm on the
> right track here...
>
> <?
> include "../includes/mysqlcon.php";
> echo "hello...";
>
> $current_time = date("Y-m-d H:i:s");
>
> $count = mysql_query("SELECT count(nid) FROM nack_ack where '$current_time'
> $numrows = mysql_num_rows($count);
>
> $i = 1;
>
> while ($i <= $numrows) {
>
> $querycustomercode = mysql_fetch_row(mysql_query("SELECT * from nack_ack
> WHERE nid = '$i'"));
> $customercode = $querycustomercode[1];
>
> echo $customercode;
>
> }
> ?>
>
>
<?
include "../includes/mysqlcon.php";
echo "hello...";
$current_time = date("Y-m-d H:i:s");
$count = mysql_query("SELECT count(nid) FROM nack_ack where '$current_time' >
date_expired");
$numrows = mysql_num_rows($count);
$querycustomercode = mysql_query("SELECT * from nack_ack WHERE nid <
'$numrows' ORDER BY nid ASC");
while($row=mysql_fetch_row($querycustome
rcode)) {
$customercode = $row[1];
echo $customercode;
}
?>
//Aho
| |
|
| Thanx guys
I sorted out the problem.
Regards
GM
"Tim Streater" <tim.streater@dante.org.uk> wrote in message
news:tim.streater-3043D7.11520223012006@individual.net...
> In article <dr25dm$jpf$1@ctb-nnrp2.saix.net>, "GM" <maillist@gam.co.za>
> wrote:
>
>
> You are not incrementing $i in the loop anywhere, so it will run forever.
>
> -- tim
|
|
|
|
|