Re: [PHP] set the PHP to look at library files.

2003-10-03 Thread J Morton
I would suggest creating a path alias in your Apache httpd.conf file to recognize (i.e) /includes/ and redirect as needed. Justin "Golawala, Moiz M (IndSys, GE Interlogix)" wrote: > Hi, > > I am running PHP with apache. I put all my webpages in the htdocs folder. A lot of > my scripts use a bun

[PHP] Converting various DB's to MySQL using PHP

2003-10-02 Thread J Morton
Hi all -- Summary: Using PHP, need to go from ACCESS -> MySQL. (Millions of records, hundreds of tables.) I am about to embark on a project over the next week which entails (in part) developing a PHP platform that will convert an Access DB to MySQL, as well as perform all needed error-checking a

Re: [PHP] Re: ADDR.COM

2003-10-02 Thread J Morton
I, for one, will be glad to see they are gone (if indeed that is the case). By the way the site is loading fine for me. They have shifty business tactics and actually used my design and one of my clients as part of their "portfolio" -- claiming it as their own I have never had any affiliati

Re: [PHP] date brain teaser [fix]

2003-10-02 Thread J Morton
Sorry I had a parentheses out of place, it should have been: "; } $this_date = date("n/j/Y",mktime(0,0,0,date("m", strtotime($this_date)),date("d", strtotime($this_date))+1,date("Y", strtotime($this_date; } ?> Hope this helps, Justin Shew wrote: > Hi, > > I'm trying to find a formu

Re: [PHP] date brain teaser

2003-10-02 Thread J Morton
Sure -- "; } $this_date = date("n/j/Y",mktime(0,0,0,date("m", strtotime($this_date)),date("d", strtotime($this_date))+1,date("Y", strtotime($this_date; } ?> Shew wrote: > Hi, > > I'm trying to find a formula for displaying the date for every Friday of a > given year, i.e. 2003 > >

Re: [PHP] Dates

2003-10-02 Thread J Morton
date("Y-m-d", strtotime($your_date)) Payne wrote: > Hi , > > This might be mysql question but how can I change a US format date > (mm/dd/) to a MySQL Format (/mm/dd). Can I do this will php or > will need let say javascript or perl to do this? > > Payne > > -- > PHP General Mailing List

Re: [PHP] passing form information.

2003-10-02 Thread J Morton
Payne wrote: > Hi, > > I am working a form to pass information from it to mysql data. I am > able to connect to the database. But nothing is being pass from the form > to the php page. This is my php code... > > -form.html

Re: [PHP] Getting the FULL path

2003-10-02 Thread J Morton
$_SERVER['SCRIPT_FILENAME'] or $_SERVER['DOCUMENT_ROOT'] Justin zavaboy wrote: > How do I get my FULL path... I made a web-based installer and it uses a > path. > > Ok, my path to where I need it is: > /home/jimbug/public_html/zavaboy/phptest/ZML > > Using dirname(): > /phptest/ZML > > Why is th