Indego
Feb 27 2007, 10:21 AM
| | Hello All.
I'm looking for some advise or assistance with getting a web page/access page running so that i can have the page online and collect the data live into my database for Project Management...
Currently I'm developing a database using M$ Access, and need to have staff data enter sales information directly into a web form that can be linked to a database?
I've looked at using a M$ Front page web form with data collected into a .CSV text file and extracting the data but i need to be able to let the staff review and update the data for each file?
Any ideas or suggestions would be very great fully appreciated? or if someone knows of a better system or set of software that will work better for me I would be really very thankful.
Looking forward to some assistance with this request.  |
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : advise, needed, access, database, webpage, conversions, linked, webform, data
- Vb And Mysql
connecting VB with mysql database (3)
How To Use A Database For Chess Results?
How to set-up, configure, and utilize a database to store chess result (0) Hi, I'm running a website for our chess club. Recently we decided to add a feature for members
to simply enter their tourney results there but I do not exactly know how to do it. The first
problem is how to create form for people to enter their game results. I just have an idea that
working with drop down menus is faster, esaier and more precise than typing the information. The
second problem is how to make these results search-able? Let me tell you the final problem which is
the worst of all that is I do not know how to build a member area. Because Qupis does no....
Need Help With My Database [resolved]
retrive data as a link (6) This is the situation: I have a database where you can add bands ( theire albums, genre other
info) For the album part they can add for each album the songs. So what do i want: When i show
the results there only shoul display the bandname which should be a link to the more detailed info
like albums biography etc. How do I do that. Is there a name for this and are there any
tutorials. thx in advance....
Flash Media Into Html/css Website
does anyone know how to import a flash into a webpage with transparenc (3) Hi I need some help , Im designing this website for school studies However, I made a flash drop down
menu, works perfectly, but you know how flash has a background when you export it in to a SWF file?
For example my flash is width= 800, and height = 200 but my div box on my html page for my
navigation is only 50 px my buttons is width of 50px and the rest of the content is the drop down
animations i want to insert it into my navigation div box but i want to set the flash background to
transparent so that when the drop down menu comes down it overlaps the text or whateva....
Index In A Mysql Database
Make the numbers follow (3) I hope I am on topic here (It does have to do with web design, after all). I have noticed that in a
MySQL database, the 'id' field just keeps its numbers for every record, with the backdraw
that, whenever you remove (a) record(s) from the table, you get your list numbered as eg.
1,5,6,7,12,25 etc. This makes it a bit difficult of keeping track of the number of records in your
table. Is there a way of achieving (either in PHPMyAdmin or through the use of PHP) that the id
field in your table gets sort of 'refreshed and updated' so you have a clearer view....
Treating .csv Files As Database Data
Showing .CSV data on a web page (2) I use a nice program (which I helped to beta test) called ' Simfatic Forms ' to generate
forms on web pages. The only problem is that it does not (yet) support MySQL databases, it saves the
form data as a .CSV file. Now I was wondering if you can do the same with a .CSV file as you do
with a MySQL databse, ie. displaying the data in that file on a web page which adjusts automatically
as data are added to the file. To clarify: eg. if I make a form to sign a petition online, the data
are saved to a .CSV file every time someone fills in the form, is it now possibl....
Key Sounds In Text Box On Webpage
Typing Key sounds when keys are pressed (1) Hey guys! /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
I've been conducting some research over the last couple of years and have come to a phase that I
need to put up an online instructory course. It's hardly a website, but it'll consist of a
text box where users are to write a sentence provided to them and while they type, as the keys are
pressed, corresponding .wav files will play. Much like a keyboarding class, a set of sentences and
sounds have already been pre-made to specifications...I've been told that I nee....
Accessing Mysql From Javascript
Javascript to communicate with database (5) I found a nice program which allows you to put quizzes on your web site. You can design your own
questions, set the layout of your page, and there is also a possibility of having the results
emailed to you. It further offers a facility to store the results and all that, all you have to do
is put a link in the program, telling it which page takes care of that. However, when I look at the
HTML code the program generates, I see that most of it is written in Javascript. Obviously, it also
uses variable names, but as I don't know any Java, I was wondering if those variab....
Practice Needed
Looking for exercises about PHP (4) Hi, Has anyone got any idea about where I could find some exercises related to PHP? I have already
found some great books which taught me a lot in a short time, same for places on the net, but what I
really need is something like (Be it a book or web site): 'We have now covered this topic, now,
write a program that does this and that, using the material you have just studied'. What I have
seems to lack that, and i think that would be the best help for me, learning by doing things. So, if
anyone has any ideas, please let me know. Thank you very much in advance. ....
Another Question On Mysql Table Data Type
text field for lots of text. (1) In my MySQL table I would like to use one text field which can contain lots of text. What I want to
use it for is for student records, and I want to be able to add to it without destroying what is
already there. I want the field to contain something like: ****03/11/2007**** Chopin prelude No 9:
small problem bars 12-15. Advice given on how to practice. ****10/11/2007**** Problem in Prelude
overcome, piece successfully completed. New piece set: Beethoven Sonata No 1, movement 1. etc. This
is of course just an example, but that is how I want to set up my student records....
Which Data Type To Use In Mysql Table
Using a 5 character number (4) If I wanted to use an ID field which automatically increments when data are addad, but displays the
ID as a 5 figure number, which data type would I have to use? I would want a type that assigns a
number to a record in the format "00001", "00002", etc. However, when I use "int" as datatype, it
only displays th field contents as "1", "2" etc. So, which data type could do the job for me? i do
not need a decimal point or anything, just an id that displays in 5 figures, including the leading
zeros. Thanks in advance.....
Where Am I Going Wrong This Time?
Can't enter data into database (4) Hi, on my local machine (with Apache 2.0, PHP 5.2.4 and MySQL 5.0) I come across weird things. I
have successfully made a table, but when I try to enter data into it it just will not accept the
empty string for the first field (id). This was the creation line: QUOTE $query="CREATE TABLE
members (id int(20) auto_increment,first varchar(15) NOT NULL,last varchar(15) NOT NULL,phone
varchar(20) NOT NULL,mobile varchar(20) NOT NULL,fax varchar(20) NOT NULL,email varchar(30) NOT
NULL,web varchar(30) NOT NULL,PRIMARY KEY (id),UNIQUE id (id),KEY id_2 (id))"; This has crea....
Can Anyone Advise Me?
Interactive web design (6) Hello, I desperately need to learn more about PHP and MySQL to develop interactive (database
driven) websites. At the moment I have to rely on scripts I get off the Internet, some are great,
some are rubbish. but no matter how good they are, they are never 100% the way you'd like them
to be. And then, if you don't know enough PHP to adjust them to your own needs, you're
obviously stuck. Is there anyone who can advise me of a good starting point? I have tried some
online tutorials, but some of them are very confusing or even contradict one another. I have go....
Psp Zone Skining And Other Help Needed
(0) Hey working on my new project at http://z11.invisionfree.com/PSP_Zone , this project is called psp
zone (its a forum) i need a skin, if you think the skin which is in use is cool then reply and tell
me that, and i need to know that what forums should be in the website like the following is what i
thought of for right now: PSP Zone Front Desk ------- PSP Zone News ------- Introductions -------
Support Other forum ideas needed please reply and tell me what else i should add.......
Help With Database
(24) I know I might sound a bit novice, but I'd like to know how to make a register and login
database. I'm making a serious website for the very first time and I can't find on internet
how to make one (don't even know how it is named). I would really appreciate me if someone could
link me to a tutorial or give me the explanation, also the program to use (I think Microsoft Access
is good?)....
Merging Database Php Mysql
(5) Hii i need help margning script. i have coppermine gallery, AzDGDating Site, Noah's
Classifieds they all have user sign-up login. but they have different like i need to have 3 seperate
account for each script is there any way like mergning one user name and password would work for 3
section. if you don't get my question please tell me i will try to explain more in detail
thank you for your time and help ....
Help Needed For Alumni Website.
(8) I'm planning to start an Alumni website for my college mates, I searched for any Alumni CMS but
couldn't find one. So If anyone of you know any Alumni or Community CMS, please share it with
me. I need a community CMS where each member Can have his own page, and somewhat related to orkut.
If there is any add-on MODs for Joomla or Mambo please do share them too.....
How Do You Combine Multiple Mysql Databases Into One Database?
(3) How do you combine multiple mysql databases into one database? I was thinking thta soem servers
restrict you to one to five mysql databases. If I have a dynamic part of a table on my site, I
would use one database for that. For every table of dynamic information, I use one database. Can I
streamline what I am doing and combine all of my databases into one? I could make multipple tables
in the same database. Would that work? thanks....
Simple Machine Forum Link Bbcode Help
I linked some of my word in the topic but... (5) I am in trouble , in a lot of topics I typed a link lead to another site with the right format
but when I click on the , it change to a blank page , what 's wrong ? If I just put the mouse
over the word I linked , it says at the bottom left of Internet Explorer http://mysite.com/forum
and then I click it , a blank white page showed up. What should I do now. I putted a Link in the
NEWS but it goes to the same problem. Thank you very much. Topic title modified. Topic moved. ....
How To Access Your Scripts/sites
(0) At the end of this tutorial you should know how to: 1.Upload your scripts to the right folder
using ftp 2.Accessing your scripts/sites using a browser This is a short but very useful tutorial
for people still new to the world of programing.I usually find that a lot of people ask me the same
questions all the time like "where do i upload my scripts" or "how do i upload them to my server"
...well the anwers to your quetions will be in this tutorial. TUTORIAL PART 1 Abit about ftp
and where to upload your files How do you upload scripts to a server? Using someth....
Drupal Installation
Help needed (2) I need help installing the PHP system Drupal. I have uploaded the correct files to the server,
changed the settings.php file to the correct path. Now I need to access the site to create an
account. How do I do that? I am considering installing phpBB next, it looks a lot easier than this.
Anyways, help would be appreciated.....
Colour "sniffer" Tool Needed
to find out the Hex colour codes off of graphics. (9) I am in need of a "colour sniffer" tool that will hover over a graphic and tell me the Hex colour
code that is under the eye-dropper thing. Does anyone have a link to a freeware tool that does
this?....
Some Codes Needed ? Please ...
(3) Dear buddies i just start building my site in FrontPage. I just need some codes of follow things...
* I just want to show the IP of the visitor on my frontpage of website . An animated chracter having
a board showing the IP , Windows , Browser of the visitor. * I just want to place
e-messenger on my site . * I want to place some Free java OR flash text and other effects on my
site. * want to place Google seach on my site. * want to place a servye on my site. So please
help me and tell me how to get codes for these..... ....
Accessing Password-protected Urls
Tryin' to figure out access... (4) Ok soo....I have different authentification required areas of a website I'm currently working
on, and I'd like to find a way to link to one pass. protected area from another, after
someone's already logged in...but each time the Popup window comes up asking for the username
and password...anyone know a way around this other than programming a php a java password protection
script? I'd really prefer to use the server's method, as it's much more concrete.
I've seen some information about a syntax along the lines of: http://username:passwor....
Import From Excel File Into Mysql Database
(14) Has anyone tried using the excel import function that comes with phpmyadmin
http://www.phpmyadmin.net/home_page/ - it does not require any additional plug-ins or scripts and
is fairly straightforward to use. In phpmyadmin, if you click on the database table which you wish
to import the data to , there is a link on the bottom left corner which says "insert data from a
text file into the table" - although it says text file it still can be used to import an excel file.
When you click on this link you will be taken to a page where you will be asked for the file name
(the....
Dreamweaver Permissions Issue
Access denied when trying to FTP (6) Okay, so I was trying to FTP these files over dreamweaver today... and it seemed to be working fine.
But then, certain files won't let me transfer from my hard drive to the internet, or the other
way around. It gives me this error message: QUOTE An FTP error occured - cannot put form1.html.
Access denied. The file may not exist, or there could be a permission problem. Anyway, I know
that the file does indeed exist. I've opened it on my hard-drive... and it is there. But it
won't let me upload this one or certain other ones with the FTP. So I went o....
Free Dhtml Menu That Reads A Database
Anyone know one? (7) Hey, anybody know a DHTML menu that reads info from a database? for people who don't know, just
like windows' "start menu" with the popup menus I want to mod it so that in phpnuke I can edit
it admin panel end. I would like it to be vertical. Do not use note tags because they are only for
admins and moderators. ....
Help With Xoops Site1
hELP NEEDED... (0) Well ...I have installed a Xoops based site in the site alloted to me. I looke dup at the documents
liste din their officila site, both official and community docs, but I could not find anone that was
straihtforward. I find Xoops more straightforward then the others. So can you guys tell me some
important doc that can help me set out my site. Secondly I want news, dynamic ocntent to be fed
into the news section of the site. Is that possible? If so, how? Please help me out with these two
questions and I willlist my site here for review. BDB....
Mysql And Ms Access
(1) Can MS Access interface with mySQL? Does anyone know how to set it up? Is it even a good idea to?....
Webpage Design- Autodownloading Hosted Files
hosted "zip" file download-How To ??? (1) Hi Guys, Posted this inquiry over a week ago & got no replys so I'm re-posting via new thread.
How do I setup a automatic download to a webpage visitor to my website? If I "host" (ie. store the
file ) on my website how do I make it so that the visitor can click on a button & get the file to
automatically download to their computer.??? This may seem obvious to youall but I'm very new
and have no idea. All Info appreciated!!! Any Links to "How To"s ?? Tutorials ?? Thanks in advance
RGPHNX....
Looking for advise, needed, access, database, webpage, conversions, linked, webform, data
|
Searching Video's for advise, needed, access, database, webpage, conversions, linked, webform, data
See Also,
|
advertisement
|
|