RE: [PHP-DB] List menus

2006-12-05 Thread Bastien Koert
here is a link to one such example http://www.weberdev.com/get_example-3852.html Bastien From: Miguel Guirao <[EMAIL PROTECTED]> To: David Skyers <[EMAIL PROTECTED]>, php-db@lists.php.net Subject: RE: [PHP-DB] List menus Date: Tue, 05 Dec 2006 08:59:44 -0600 The solution has

RE: [PHP-DB] List menus

2006-12-05 Thread Vincent DUPONT
g the HTML_Menu. A good point is also the 'renderers' wich let you create new layouts for the very same menu data. this will help you create special menus for your customers... Vincent -Original Message- From: David Skyers [mailto:[EMAIL PROTECTED] Sent: Tue 5/12/2006 14:19 T

RE: [PHP-DB] List menus

2006-12-05 Thread Miguel Guirao
The solution has been posted before, check the archives! -Original Message- From: David Skyers [mailto:[EMAIL PROTECTED] Sent: Martes, 05 de Diciembre de 2006 07:20 a.m. To: php-db@lists.php.net Subject: [PHP-DB] List menus Hello, How do you create a database driven list menu, and

[PHP-DB] List menus

2006-12-05 Thread David Skyers
Hello, How do you create a database driven list menu, and record the options that a user has chosen. And then display the list menu with those chosen option selected. Please select from list >PHP 3 --- >PHP 4 >PHP 5 Regards, David

Re: [PHP-DB] list field from .dbf

2006-09-27 Thread Chris
Rafael Ramdhani wrote: Dear All, i need convert my data from .dbf ( visual foxpro ) to mysql database first at all i open .dbf and list the field some error with function dbase_get_record it's not support list field ( memo type ) my list data have lost where field type is memo may help me

[PHP-DB] list field from .dbf

2006-09-26 Thread Rafael Ramdhani
Dear All, i need convert my data from .dbf ( visual foxpro ) to mysql database first at all i open .dbf and list the field some error with function dbase_get_record it's not support list field ( memo type ) my list data have lost where field type is memo may help me to get field (memo) re

[PHP-DB] list field from .dbf

2006-09-26 Thread Rafael Ramdhani
Dear All, i need convert my data from .dbf ( visual foxpro ) to mysql database first at all i open .dbf and list the field some error with function dbase_get_record it's not support list field ( memo type ) my list data have lost where field type is memo may help me to get field (memo) reg

RE: [PHP-DB] list test - ignore

2005-06-23 Thread Bastien Koert
he's dead, jim bastien From: "Mark Galbreath" <[EMAIL PROTECTED]> To: Subject: [PHP-DB] list test - ignore Date: Thu, 23 Jun 2005 14:57:45 -0400 is this list alive? ***

[PHP-DB] list test - ignore

2005-06-23 Thread Mark Galbreath
is this list alive? *** This email and any file transmitted with it may be confidential and is intended solely for the use of the individual or entity to whom it is addressed. If y

Re: [PHP-DB] List Active??

2004-12-29 Thread Doug Thompson
Dave, The list has been very active with many posts per day all week. Based on your domain, you might check with the sysops and see if they've done any updating to firewalls and/or corporate filters. Good luck, Doug [EMAIL PROTECTED] wrote: Just testing the list mail server as I haven't received a

[PHP-DB] List Active??

2004-12-29 Thread dpgirago
Just testing the list mail server as I haven't received any posts for days now. dave

[PHP-DB] List-Unsubscribe

2004-12-23 Thread Miguel Guirao
ibed under, in case you later want to unsubscribe or change your subscription address. --- Administrative commands for the php-db list --- I can handle administrative requests automatically. Please do not send them to the list address! Instead, send your message to the correct command address: Fo

[PHP-DB] List Question!

2004-03-28 Thread JeRRy
Hi, Just a list question here. Not sure if this question is answered online anywhere but thought I'd post here. - If a user is NOT subscribed to this "Mailing List" can they still post by emailing "[EMAIL PROTECTED]" ? I have never emailed "[EMAIL PROTECTED]" without subscribing before. - If n

[PHP-DB] List-Unsubscribe

2003-12-17 Thread Oksana Yasynska
__ This communication is intended for the use of the recipient to whom it is addressed, and may contain confidential, personal, and or privileged information. Please contact us immediately if you are not the intended recipient of this communication, and do not copy, distribute,

Re: [PHP-DB] List Server Configuration; Was [Import text file]

2003-02-13 Thread David T-G
Mitch, et al -- ...and then [EMAIL PROTECTED] said... % % Well ... in fact, most lists that I've been on use the Reply-To header to % automate this. MOST email clients I have used do not recognize email as That doesn't make it right :-) % "list email" and while they have a Reply and Reply All

Re: [PHP-DB] List Server Configuration; Was [Import text file]

2003-02-13 Thread mitch
Well ... in fact, most lists that I've been on use the Reply-To header to automate this. MOST email clients I have used do not recognize email as "list email" and while they have a Reply and Reply All option, I've never seen a Reply-List option. So ... what is right, and who is broke could be arg

[PHP-DB] ``List-Unsubscribe''

2003-02-05 Thread Bruce Levick
``List-Unsubscribe''

[PHP-DB] list menu

2003-02-02 Thread Addison Ellis
hi and thank you for your time... how do i, as my text fields are echoing a selected value, get my list menus to do the same? text field has: contact; ?> list menu has: property_type; ?> house condo duplex apartment

Re: [PHP-DB] list archive

2002-02-06 Thread Steven Cayford
On 2002.02.06 19:47:12 -0600 B.J.Rumsey wrote: > Is there a list achrive somewhere? > Go here http://www.php.net/mailing-lists.php and click on the archive for the list you want. -Steve -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] list archive

2002-02-06 Thread B.J.Rumsey
Is there a list achrive somewhere?

[PHP-DB] List

2001-12-14 Thread Victor Bogdan C.
list

Re: [PHP-DB] list entries alphabetically

2001-08-15 Thread Miles Thompson
Andrius, Seriously, work through a SQL tutorial and you'll have all your questions answered. Here's a good link: http://developer.ecorp.net/sqltut.htm just remember that MySQL doesn't support sub queries. The ORDER clause in a SQL SELECT statement determines the order of the returned records.

Re: [PHP-DB] list entries alphabetically

2001-08-15 Thread KSchneider
$query = "SELECT * FROM table WHERE field = 'criteria' ORDER BY field"; $result = mysql_query("db","$query"); this sort order is ascending. to get descending order, use: ORDER BY field DESC you should, however, go to the previously recommended site for a tutorial. your questions will be answere

[PHP-DB] list entries alphabetically

2001-08-15 Thread Andrius Jakutis
Hello again, How to list entries alphabeticall way? Using MYSQL. Thanks

Re: [PHP-DB] List Results Not Working

2001-08-05 Thread Miles Thompson
I think Hugh nailed the problem, but when a script throws errors it's often helpful to save it with a .phps extension and call it from your browser. That often shows errors in syntax if a line isn't the colour you expect. It also forces you to look at it "differently" because the colourization

[PHP-DB] List Results Not Working

2001-08-04 Thread Steve Fitzgerald
I'm trying to list the results of a query, but I keep getting the following error: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' I must be missing something because I can't find what's causing the pars

Re: [PHP-DB] List for SQL questions?

2001-03-26 Thread Jason Stechschulte
On Sat, Mar 24, 2001 at 06:40:09AM +0100, Martin Skj?ldebrand wrote: > I've tried: > > "SELECT ticket.t_id, t_client, t_summary, e_assignedto, e_status FROM > ticket, events WHERE e_status = 'REGISTERED' AND e_assignedto = 'Not > Assigned' AND ticket.t_id = events.t_id"; > > This gives me ALL

[PHP-DB] List for SQL questions?

2001-03-23 Thread Martin Skjöldebrand
Anyone knows a list for discussion SQL questions? On the off chance that this *is* an appropriate list here goes: I want to select tickets from two tables that registers support tickets and events related to the ticket. No problem. Tickets go through various stages, REGISTERED, OPEN, CLOSED in