473,799 Members | 3,638 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2837
On 10 Sep 2003 13:58:40 -0700, mi***********@m ail.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 startprogrammin g 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***********@m ail.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 startprogrammin g 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***********@m ail.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***********@m ail.com (Michel) wrote in message news:<a9******* *************** ****@posting.go ogle.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.go ogle.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
2833
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 server-side scripting. I've been running it all on the development machine until the application I'm building is advanced enough to start optimising/testing with network lag in mind. So it's no slower, and in some ways at least it seems faster.
0
1148
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 access a database slow way down or time out. I have spent a lot of time trying to track this down and have not found anything that would work. Here is my story. I know it's not a "pure" asp problem because test asp pages that don't access a...
3
9644
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 see no problems and think the app is running okay. I turned a database monitor on the app and see that the database is getting SQL return coes of -301 for a variety of database accesses (some times the same access works, okay other times -301)....
1
17681
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 Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
2
2946
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 sub-report will capture what grades the student has achieved in a list of different subjects and the reason I need it to be dynamic is that students take different subjects. Basically I've been trying to doctor the KB article on dynamic
9
3845
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 site for a small club I belong to and one of the features I would like to include is the ability to allow users to upload image files. unfortunately the servers web root www folder only allows READ and EXECUTE permissions, which makes it...
7
10765
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 any idea how I can determine this? At this point I don't care if it is a third plugin freeware app I use that writes it to a text file that I could read out. Thanks!
9
2986
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 got the core of the javascript from here: http://www.dynamicdrive.com/dynamicindex17/ajaxcontent.htm I noticed in the demo that sometimes the content takes a long
11
3833
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 between the pages, and in almost every case, I can set 'em up fine, provided the variables are in the link. The page the *holds* the booking information, though, is problematic. An example trip might include two European cities or towns with a...
0
9687
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10485
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10252
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10231
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9073
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7565
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5463
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.