php-windows Digest 14 Apr 2002 14:15:06 -0000 Issue 1093

Topics (messages 13080 through 13085):

Frontpage- help!
        13080 by: JJ in MD_USA
        13081 by: Scott Carr

Zip Code mysql db
        13082 by: Russell Griechen

Re: Tutorials on stored procedures using SQL Server
        13083 by: Christoph Grottolo
        13084 by: John Lim

Re: Apache 2.0.35
        13085 by: Haagen Waade

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
All I want to do is have MS Frontpage 2000 be able to interpret the php3
files.  Does this mean that I have to install a server on my Win98 OS?  I
have downloaded and installed PHP.exe and all that, and also the rocket
addin from MS knowledgebase, but it still doesn't seem to interpret.

Thanks for any help,
JJ


--- End Message ---
--- Begin Message ---
Download a copy of Apache.  It runs on Win32 OS, and just about anywhere else
you happen to be.  

If you have problems setting it up, I'll help you.

http://httpd.apache.org

-- 
Scott Carr
OpenOffice.org
Whiteboard-Doc Maintainer
http://whiteboard.openoffice.org/doc/


Quoting JJ in MD_USA <[EMAIL PROTECTED]>:

> All I want to do is have MS Frontpage 2000 be able to interpret the php3
> files.  Does this mean that I have to install a server on my Win98 OS?  I
> have downloaded and installed PHP.exe and all that, and also the rocket
> addin from MS knowledgebase, but it still doesn't seem to interpret.
> 
> Thanks for any help,
> JJ
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
--- End Message ---
--- Begin Message ---
I need to search for the nearest entity in range of 100?? miles.
I have a mysqldump...city table does not have a zip_code field or
zip_code_id
I would prefer to enter in zip_code either/or by memory or by data
input...maybe a zip+4 or foreign. In some tables (city for instance)I
would want to use zip_code_id and others I would use zip_code and use
info supplied by others or entered by others.
is there an option to use:

CREATE TABLE zip_code (
   zip_code varchar (15)
PRIMARY KEY (zip_code)
and would this serve as lookup table?
Any other comments appreciated
I realize I would have to alter the city table shown below.
#
# Table structure for table 'city, country, state'
#
CREATE TABLE city (
   city_id mediumint(9) DEFAULT '0' NOT NULL auto_increment,
   name varchar(75) NOT NULL,
   latitude float(7,5) DEFAULT '0.00000' NOT NULL,
   longitude float(7,5) DEFAULT '0.00000' NOT NULL,
   state_id tinyint(4) DEFAULT '0' NOT NULL,
   PRIMARY KEY (city_id),
   KEY name (name),
   KEY latitude (latitude),
   KEY longitude (longitude),
   KEY state_id (state_id)

CREATE TABLE state (
   state_id tinyint(4) DEFAULT '0' NOT NULL auto_increment,
   abbrev char(2) NOT NULL,
   name varchar(30) NOT NULL,
   country_id char(2) NOT NULL,
   PRIMARY KEY (state_id),
   KEY country_id (country_id),
   KEY name (name),
   KEY abbrev (abbrev)CREATE TABLE country (
   country_id char(2) NOT NULL,
   name varchar(50) NOT NULL,
   PRIMARY KEY (country_id),
   KEY name (name)

Russell Griechen

--- End Message ---
--- Begin Message ---
There's a tutorial on PHP/SQL Server stored procedures at
http://www.devarticles.com/content.php?articleId=100

Christoph


"R.S. Herhuth" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
|
| Anyone know of any internet based tutorials on using stored procedures
| with SQL Server?
|
| Thanks,
| ROn


--- End Message ---
--- Begin Message ---
Try www.sqlteam.com

"R.S. Herhuth" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>
> Anyone know of any internet based tutorials on using stored procedures
> with SQL Server?
>
> Thanks,
> ROn


--- End Message ---
--- Begin Message ---
4.2.0 RC3 is out, and with Apache2 support.

But how to configure it with apache2 ? I see there is a
/experimental/apache2filter.dll
I guess this is the new module for apache2, but how do I configure it in
httpd.conf
I've tried to load it as an module, but did not get it to work.


"Chris Dion" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Now that there is a binary out for apache 2 for windows...are we going to
> get a binary for php for apache 2?  Anyone know?  Or how I can manage to
> compile php for apache2?
>
>


--- End Message ---

Reply via email to