473,385 Members | 1,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

dynamic database websites, What, Where, How to start?

What free programs, where to download and how to install and start
programming a dynamic website that enables visitors to log in, lookup
and write data in/from a serversite database. So how can I write and
test it without internet on a win98se pentium?

thanks
Jul 16 '05 #1
8 2820
On 10 Sep 2003 13:58:40 -0700, mi***********@mail.com (Michel) wrote:
What free programs, where to download
http://httpd.apache.org
http://php.net
http://www.mysql.com
http://postgresql.org
and how to install
Each of the above has a manual.
and startprogramming a dynamic website that enables visitors to log in, lookup
and write data in/from a serversite database. So how can I write and
test it without internet on a win98se pentium?


Each of the above works without an Internet connection.

--
Andy Hassall (an**@andyh.co.uk) icq(5747695) (http://www.andyh.co.uk)
Space: disk usage analysis tool (http://www.andyhsoftware.co.uk/space)
Jul 16 '05 #2
So apache is needed to run a webserver on the local machine, right?
PHP is the language to be able to write and get data out of a database
and make dynamic webpages, right?
MySQL is the database itselve, right?

But for what do I need postgresql?
Do I really need all this soft to write a simple database to save and
lookup data into a excel-look webpage?
Andy Hassall <an**@andyh.co.uk> wrote in message news:<jm********************************@4ax.com>. ..
On 10 Sep 2003 13:58:40 -0700, mi***********@mail.com (Michel) wrote:
What free programs, where to download


http://httpd.apache.org
http://php.net
http://www.mysql.com
http://postgresql.org
and how to install


Each of the above has a manual.
and startprogramming a dynamic website that enables visitors to log in, lookup
and write data in/from a serversite database. So how can I write and
test it without internet on a win98se pentium?


Each of the above works without an Internet connection.

Jul 16 '05 #3
With total disregard for any kind of safety measures
mi***********@mail.com (Michel) leapt forth and uttered:
So apache is needed to run a webserver on the local machine,
right? PHP is the language to be able to write and get data out
of a database and make dynamic webpages, right?
MySQL is the database itselve, right?

But for what do I need postgresql?
PostGre is another DB server, you don't really need it. And if
anything you'll probably find it a dog to install.
Do I really need all this soft to write a simple database to
save and lookup data into a excel-look webpage?


No not necessarily, but if you want to do proper development on
your own system then you will need all of it. Unless you develop
scripts live on the server that is.

--
There is no signature.....
Jul 16 '05 #4
> Do I really need all this soft to write a simple database to
save and lookup data into a excel-look webpage?

You could also look at xml language and a simple "include" in your webpage.
Excel __> save as xml doc
Jul 16 '05 #5
Message-ID: <jm********************************@4ax.com> from Andy Hassall
contained the following:
What free programs, where to download


http://httpd.apache.org
http://php.net
http://www.mysql.com
http://postgresql.org


PHPdev is an incredibly easy way of doing it all in one go on a windoze
machine.

"... phpdev is a pre configured suite of all the bits and pieces you need
to get Apache/PHP/MySQL/other running on your machine. It is not invasive
and does not alter any windows settings or touch the registry etc. "

http://www.firepages.com.au/

--
Geoff Berrow
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
Jul 16 '05 #6
i just set up apache and php using this tutorial...

http://crowdesigns.apachego.com/apache/

put your dlls into Windows/System folder and put you php.ini in your
Windows folder. I didn't install mysql as i'm delusional and think
i'm going to skip mysql and jump to postgresql (pgsql).

pgsql alledgedly has more functionality, but is also much less popular
and used less than mysql - and tutorials are pretty darn scarce
relative to mysql.

i used apache 2.0.47 and php 4.3.3 on my win98 box.

i ran into a problem testing my php b/c the file (i got html output
only) i thought i downloaded wasn't the actual file that was
downloaded. when i actually put proper php code into the file, it
worked like a charm.

except for the stupid non php content, the whole thing was pretty
painless.

i recommend using notepad (or another editor) and putting

<?php
phpinfo();
?>

as your php test script. make sure you save it as test.php.

then type in...

http://localhost.test.php (or http://localhost:8080/test.php, as the
case may be - that screwed me up for a day or so).

Ther are other modifications you can make to youe apache httpd.conf
(configuration) file that i picked up using othr tutorials. do a
google on "apache php mysql configuration" or "... install" and review
some other tutorials for additional ideas.

in addition, you may have to hard link some urls so you can follow
this advice i just picked up from the newsgroups today...

---------------
how to make "localhost" into "www.nameiwant.com"
---------------

Yes!! there is a way..

Go to your windows directory, and you should be able to find a file
hosts.sam (hosts sample file) If there is no hosts file, copy
hosts.sam to hosts.

Open hosts, and you'll see some minimal descriptions, etc...

On the line that says:
127.0.0.1 localhost

add www.nameiwant.com

i.e. (horizontal seperator is space, or tab char)

127.0.0.1 localhost www.nameiwant.com

save the file.

open you web browser, connect to www.nameiwant.com, and voila -- same
thing as localhost.

If the sitename exists on the internet, your system will connect
locally, in preference to going outside (it looks in the local copy of
the hosts file first..).

So, you could even use the target name of the system you will
eventually be uploading to.., locally -- but this may cause all kinds
of confusion, if you try to work on both the local, and remote systems
at the same time, with the same name :) (just ask me about it:) :) :)

i also saw another google message that said...

You have also to modify ServerName directory in httpd.conf.

is this an add'l step or an alternate step? i don't know. i will
find out this weekend.

good luck.

mi***********@mail.com (Michel) wrote in message news:<a9**************************@posting.google. com>...
What free programs, where to download and how to install and start
programming a dynamic website that enables visitors to log in, lookup
and write data in/from a serversite database. So how can I write and
test it without internet on a win98se pentium?

thanks

Jul 16 '05 #7
On 12 Sep 2003 16:36:05 -0700, js******@san.rr.com (Jeff Skeith) wrote:
put your dlls into Windows/System folder and put you php.ini in your
Windows folder.


You're better off not doing this; don't add anything to the Windows system
directories if you can help it.

Just add the path to the DLLs to your PATH environment variable so they can be
loaded by the webserver.

Set the PHPRC environment variable to the directory containing php.ini -
probably the easiest place is the same directory as above, e.g. c:\php , or
wherever you unpacked the .zip file to.

--
Andy Hassall (an**@andyh.co.uk) icq(5747695) (http://www.andyh.co.uk)
Space: disk usage analysis tool (http://www.andyhsoftware.co.uk/space)
Jul 16 '05 #8
ru*****@waiheke.co.nz (george) wrote in message news:<bc**************************@posting.google. com>...
Do I really need all this soft to write a simple database to
save and lookup data into a excel-look webpage?

You could also look at xml language and a simple "include" in your webpage.
Excel __> save as xml doc


Meaning? Can I use excel to make browser-writable databases online using XML?
Please give more info...
Jul 16 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: democratix | last post by:
Hi, I've only got a couple years experience developing for Access but have recently been experimenting with HTML/javascript for gui and client-side scripting, mysql for database and php for...
0
by: Sunlight Software | last post by:
I have a windows200 server running iis5. I have a number of websites on the server, most of them using asp and either MSAccess or Sql Server databases. Every now and then all the pages that...
3
by: JDPope | last post by:
I have a situation which I cannot get a good lead on how to resolve. One of the applications I support uses the Hibernate software to generate SQL. The app is JAVA with JDBC. In testing the users...
1
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to...
2
by: deejayquai | last post by:
Hi I'm trying to produce a report based on a dynamic crosstab. Ultimately i'd like the report to actually become a sub report within a student end of year record of achievement. The dynamic...
9
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web...
7
by: Joey | last post by:
I don't care what .net language this come in but I really need to determine if a disk is dynamic or basic. I have posted something in the WMI group but no one knows how to do it. Does anyone have...
9
by: pbd22 | last post by:
Hi. This is just a disaster management question. I am using XMLHTTP for the dynamic loading of content in a very crucial area of my web site. Same as an IFrame, but using XMLHTTP and a DIV. I...
11
by: julie.siebel | last post by:
I'm working on a rather complex booking system for building European trips, in a combination of SQL/VBScript/Javascript. There are tons of query string variables that get passed back and forth...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.