Re: Down list

2008-10-21 Thread Andy Shellam
You might like to try here: http://lists.mysql.com/, then click on 
Unsubscribe underneath the General Discussion list.


Vidal Garza wrote:

Please let me down of the list.
I resigns from my job.

Thanks



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Down list

2008-10-20 Thread Vidal Garza

Please let me down of the list.
I resigns from my job.

Thanks

--
BSD is for people who love UNIX.
Ing. Vidal Garza Tirado
Depto. Sistemas
Aduanet S.A. de C.V.
Tel. (867)711-5850 ext. 4346, Fax (867)711-5855.
Ave. César López de Lara No. 3603 Int. B Col Jardín.
Nuevo Laredo, Tamaulipas, México. 




--
Este mensaje ha sido analizado por MailScanner
en busca de virus y otros contenidos peligrosos,
y se considera que está limpio.
For all your IT requirements visit: http://www.aduanet.net


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



drop down list using php and mysql

2002-03-15 Thread mailing list

Hello,

I am trying to build a drop down list using php and mysql.  Does anyone
have any examples of this?

Regards,

Adrian


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: drop down list using php and mysql

2002-03-15 Thread Gurhan Ozen

Hi,
This type of qustion should be forwarded to PHP-DB list. Its adres is:
[EMAIL PROTECTED] .

As for the answer to your question.. IF you'd like to create a dynamic
drop-down menu.. You can just just query the table for the options to be
displayed and loop through the result set and print them on html .. For
example:

   $query=select field from table;
   $result=mysql_query($query);
   $numrows=mysql_num_rows($result);

   echo 'select name=categories';
   for ($i=0; $numresult  $i; $i++)
   {
 $row=mysql_fetch_array($result);
 echo 'option'.($row[field]).'';
   }


Gurhan

-Original Message-
From: mailing list [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 4:52 PM
To: [EMAIL PROTECTED]
Subject: drop down list using php and mysql


Hello,

I am trying to build a drop down list using php and mysql.  Does anyone
have any examples of this?

Regards,

Adrian


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: drop down list using php and mysql

2002-03-15 Thread Gurhan Ozen

A correction... for line has the greater sign wrong:) It has to be :

 for ($i=0; $numresult  $i; $i++)

Sorry about that:)

Gurhan

-Original Message-
From: Gurhan Ozen [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 6:01 PM
To: mailing list; [EMAIL PROTECTED]
Subject: RE: drop down list using php and mysql


Hi,
This type of qustion should be forwarded to PHP-DB list. Its adres is:
[EMAIL PROTECTED] .

As for the answer to your question.. IF you'd like to create a dynamic
drop-down menu.. You can just just query the table for the options to be
displayed and loop through the result set and print them on html .. For
example:

   $query=select field from table;
   $result=mysql_query($query);
   $numrows=mysql_num_rows($result);

   echo 'select name=categories';
   for ($i=0; $numresult  $i; $i++)
   {
 $row=mysql_fetch_array($result);
 echo 'option'.($row[field]).'';
   }


Gurhan

-Original Message-
From: mailing list [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 4:52 PM
To: [EMAIL PROTECTED]
Subject: drop down list using php and mysql


Hello,

I am trying to build a drop down list using php and mysql.  Does anyone
have any examples of this?

Regards,

Adrian


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: drop down list using php and mysql

2002-03-15 Thread Nathan

You could also bypass the num_rows entirely...

   ?php
   $query=select field from table;
   $result=mysql_query($query) or exit(mysql_error().BR.$query);

   echo 'select name=categories';
   for ($i=0; $row = mysql_fetch_assoc($result); $i++) {
  echo 'option'.($row[field]).'';
   }
   echo '/select';
   ?

# Nathan

- Original Message - 
From: Gurhan Ozen [EMAIL PROTECTED]
To: mailing list [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, March 15, 2002 4:17 PM
Subject: RE: drop down list using php and mysql


A correction... for line has the greater sign wrong:) It has to be :

 for ($i=0; $numresult  $i; $i++)

Sorry about that:)

Gurhan

-Original Message-
From: Gurhan Ozen [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 6:01 PM
To: mailing list; [EMAIL PROTECTED]
Subject: RE: drop down list using php and mysql


Hi,
This type of qustion should be forwarded to PHP-DB list. Its adres is:
[EMAIL PROTECTED] .

As for the answer to your question.. IF you'd like to create a dynamic
drop-down menu.. You can just just query the table for the options to be
displayed and loop through the result set and print them on html .. For
example:

   $query=select field from table;
   $result=mysql_query($query);
   $numrows=mysql_num_rows($result);

   echo 'select name=categories';
   for ($i=0; $numresult  $i; $i++)
   {
 $row=mysql_fetch_array($result);
 echo 'option'.($row[field]).'';
   }


Gurhan


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: drop down list using php and mysql

2002-03-15 Thread Gurhan Ozen

Yup Yup , you sure could.. Or you could also use
  while ($array_name=mysql_fetch_Array($result)) {..}but for some reason
i always write at least a couple extra lines and use number of rows.. I
guess it is because thats how i learned it  first :))

Gurhan


-Original Message-
From: Nathan [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 6:31 PM
To: Gurhan Ozen; mailing list; [EMAIL PROTECTED]
Subject: Re: drop down list using php and mysql


You could also bypass the num_rows entirely...

   ?php
   $query=select field from table;
   $result=mysql_query($query) or exit(mysql_error().BR.$query);

   echo 'select name=categories';
   for ($i=0; $row = mysql_fetch_assoc($result); $i++) {
  echo 'option'.($row[field]).'';
   }
   echo '/select';
   ?

# Nathan

- Original Message -
From: Gurhan Ozen [EMAIL PROTECTED]
To: mailing list [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, March 15, 2002 4:17 PM
Subject: RE: drop down list using php and mysql


A correction... for line has the greater sign wrong:) It has to be :

 for ($i=0; $numresult  $i; $i++)

Sorry about that:)

Gurhan

-Original Message-
From: Gurhan Ozen [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 15, 2002 6:01 PM
To: mailing list; [EMAIL PROTECTED]
Subject: RE: drop down list using php and mysql


Hi,
This type of qustion should be forwarded to PHP-DB list. Its adres is:
[EMAIL PROTECTED] .

As for the answer to your question.. IF you'd like to create a dynamic
drop-down menu.. You can just just query the table for the options to be
displayed and loop through the result set and print them on html .. For
example:

   $query=select field from table;
   $result=mysql_query($query);
   $numrows=mysql_num_rows($result);

   echo 'select name=categories';
   for ($i=0; $numresult  $i; $i++)
   {
 $row=mysql_fetch_array($result);
 echo 'option'.($row[field]).'';
   }


Gurhan


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php