Re: [PHP] How to replace define in a require file with mysql?

2007-11-05 Thread Zoltán Németh
2007. 11. 5, hétfő keltezéssel 06.10-kor Ronald Wiplinger ezt írta: Jim Lucas wrote: Ronald Wiplinger wrote: I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with

Re: [PHP] How to replace define in a require file with mysql?

2007-11-05 Thread Robin Vickery
On 05/11/2007, Zoltán Németh [EMAIL PROTECTED] wrote: 2007. 11. 5, hétfő keltezéssel 06.10-kor Ronald Wiplinger ezt írta: Jim Lucas wrote: Ronald Wiplinger wrote: I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City);

Re: [PHP] How to replace define in a require file with mysql?

2007-11-05 Thread Jim Lucas
Ronald Wiplinger wrote: Jim Lucas wrote: Ronald Wiplinger wrote: I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I

Re: [PHP] How to replace define in a require file with mysql?

2007-11-04 Thread Ronald Wiplinger
Jim Lucas wrote: Ronald Wiplinger wrote: I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye

[PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Ronald Wiplinger
I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye Ronald -- PHP General Mailing List

[PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Ronald Wiplinger
I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye Ronald -- PHP General Mailing List

Re: [PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Richard Heyes
I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? I'm not aware of any method of undefining an already

Re: [PHP] How to replace define in a require file with mysql?

2007-10-17 Thread Jim Lucas
Ronald Wiplinger wrote: I have a file linked with require into my program with statements like: define(_ADDRESS,Address); define(_CITY,City); I would like to replace this with a mysql table with these two fields (out of many other fields). How can I do that? bye Ronald Well, if you have