|
Elsmar Cove Forum Sidebar
|
|
|
|
Monitor the Elsmar Forum
|
| Monitor New Forum Posts
|
|
Follow Marc & Elsmar
|
|
|
Elsmar Cove Groups
|
|
|
Sponsor Links
|
|
|
|
|
|
Donate and $ Contributor Forum Access
|
 |
|
Sponsored Links
|
|
|
|
Courtesy Quick Links
|
 Links that Elsmar Cove visitors will find useful in your quest for knowledge:
Howard's International Quality Services
Atul's Symphony Technologies
Marcelo Antunes' SQR Consulting
Bob Doering's Correct SPC - Precision Machining
NIST's Engineering Statistics Handbook
IRCA - International Register of Certified Auditors
SAE - Society of Automotive Engineers
Quality Digest Portal
IEST - Institute of Environmental Sciences and Technology
ASQ - American Society for Quality
|
|
 |
|

25th June 2008, 04:55 PM
|
 |
Involved in Discussions
Registration Date: Jun 2008
Location: Sardegna Italia close to the sea
|
|
Posts: 161
Thanks Given to Others: 13
Thanked 55 Times in 43 Posts
Karma Power: 37
|
|
Using PHP, ajax and MySql for QMS
Hi everybody,
I'm trying to write down all my QMS in php, ajax and MySql.
Up to now all stuff about incoming material, tracking material, gauges and instruments management and suppliers rating are covered.
I'm currently working on PAPP isuues.
Did anybody do something similar or would like to share experiences?
thanks
|

25th June 2008, 09:45 PM
|
 |
Forum Administrator
Registration Date: Sep 2006
Location: Arlington,Texas
|
|
Posts: 5,343
Thanks Given to Others: 1,302
Thanked 1,816 Times in 1,226 Posts
Karma Power: 400
|
|
|
Re: Using PHP, ajax and MySql for QMS
Hello, Zancky!  Some questions for you....
1. Why are you using so many different applications? Are you not interested in finding one?
2. As far as gauges and the like.... is your application currently covering your need? I have found that dedicated programs for calibration/asset management take care of many of the issues that I am interested in.
As far as your comments requested... are you looking for people to comment on your particular applications, or are you wondering how others have handled the same process requirements as you?
__________________
Now, 75 years later in an abundant society where people have laptops, cell phones, iPods and minds like empty rooms, I still plod along with books. ”
—Harper Lee
|

26th June 2008, 06:24 AM
|
 |
Involved in Discussions
Registration Date: Jun 2008
Location: Sardegna Italia close to the sea
|
|
Posts: 161
Thanks Given to Others: 13
Thanked 55 Times in 43 Posts
Karma Power: 37
|
|
|
Re: Using PHP, ajax and MySql for QMS
hi Brad,
even if I'm not a programmer, I'm trying to write by myself my applications.
I have taken the choice to write a program that everybody into the plant can work with (multiusers and intranet based).
MySQL is the database, the user opens Internet Explorer or Firefox, type the address of my computer and he should find whatever he need. The web pages and the script have been written by me in php and ajax (more or less like this forum, I suppose). This gives me a lot of flexibility, everything is free of charge and I'm studying something new.
As I have found very competent people here, I would like to compare solutions, strategies, tricks with someone else involved in writing program. No problem to give all the software I have written, I'm for open source!. Doing everything myself I made sometime mistakes that take a lot of time to be solved expecially if they are related to program architecture therefore if someone can help me it would be very appreciated
thanks
|

26th June 2008, 08:18 AM
|
|
Involved in Discussions
Registration Date: Feb 2008
Location: UK
|
|
Posts: 74
Thanks Given to Others: 5
Thanked 41 Times in 26 Posts
Karma Power: 29
|
|
|
Re: Using PHP, ajax and MySql for QMS
Doing all this yourself is going to be HARD.
I write some code, mainly SQL, VB.net and C#, for a few applications that are used at my company but they're adding functionality rather than developing a system from scratch.
For what you have described you need to start of with requirements capture. Once you have requirements for each part of your application you then need to do map out some high designs on how things are going to work, which function are going to do what etc. Then you need to write the stuff and then test it.
This is an extremeley superficial look at what you are going to do.
Even the database alone is hugely complex, do you understand about normal forms for databases? If the fundamental design for you DB isn't correct then your going to be in for a rough time as it will perform poorly, use excessive space and you could end up conflicting data.
I would aim a little less high to begin with. Your choice of technologies are good so pick a small thing to begin with and see how that goes and then start expanding.
I will iterate this once again though. A good database design is essential to start with. It's a lot easier to rewrite bits of code than it is to change your database structure.
|

26th June 2008, 11:32 AM
|
 |
Involved in Discussions
Registration Date: Jun 2008
Location: Sardegna Italia close to the sea
|
|
Posts: 161
Thanks Given to Others: 13
Thanked 55 Times in 43 Posts
Karma Power: 37
|
|
|
Re: Using PHP, ajax and MySql for QMS
hi Alex,
thanks for Your answer.
Well I have started 4 years ago. For one year I have studied php and mysql. More or less the current system consists now of about 280 scripts. I have choosen a modular approach so I add a new functionality every 2 months. During the development I started to study ajax and a little of jave updating everytime the system.
About normal form for DB. I know it, but for some special tasks I preferred not to follow the rule and after 2 year, I can cornfirm it was the right choice.
The flexibility of the system for me it is very important. With my program QC generate a lot of reports and forms, therefore if the QMS changes for any reason I can update reports and forms. Not a long time ago design department changed completely incoming material specifications, I have to update db structure, filling forms and reports (two weeks working only on overtime). I don't think that it would be possible with a commercial one.
|

26th June 2008, 12:21 PM
|
|
Inactive Registered Visitor
Registration Date: Feb 2007
Location: Marietta, Georgia
|
|
Posts: 447
Thanks Given to Others: 180
Thanked 152 Times in 115 Posts
Karma Power: 72
|
|
|
Re: Using PHP, ajax and MySql for QMS
Quote:
In Reply to Parent Post by BradM
1. Why are you using so many different applications? Are you not interested in finding one?
|
What he's describing is an application development stack.
MySQL is the data repository.
PHP is a programming language. PHP scripts gather data from end users and store it in the repository or search the repository for data and present it to end users.
Ajax is a programming technique using javascript.
This is similar to the stack that runs this site. Look for the software logos at the bottom of this very page.
|

26th June 2008, 12:24 PM
|
|
Inactive Registered Visitor
Registration Date: Feb 2007
Location: Marietta, Georgia
|
|
Posts: 447
Thanks Given to Others: 180
Thanked 152 Times in 115 Posts
Karma Power: 72
|
|
|
Re: Using PHP, ajax and MySql for QMS
Quote:
In Reply to Parent Post by zancky
Hi everybody,
I'm trying to write down all my QMS in php, ajax and MySql.
Up to now all stuff about incoming material, tracking material, gauges and instruments management and suppliers rating are covered.
I'm currently working on PAPP isuues.
Did anybody do something similar or would like to share experiences?
thanks
|
 
In-house developed software is the way to go.
Never used javascript myself, but the php/MySQL combination is excellent stuff.
|

8th July 2008, 03:02 AM
|
|
Inactive Registered Visitor
Registration Date: Jul 2008
Location: USA
|
|
Posts: 5
Thanks Given to Others: 0
Thanked 0 Times in 0 Posts
Karma Power: 20 Karma: 10 
|
|
|
Re: Using PHP, ajax and MySql for QMS
I am interested in PHP, at present I'm busy in doing different work, hope after finishing the work I will plan to write about PHP very soon.
|
Lower Navigation Bar
|
|
|
Do you find this discussion thread helpful and informational?
|
Visitors Currently Viewing this Thread: 1 (0 Registered Visitors (Members) and 1 Unregistered Guest Visitors)
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate Thread Content |
Linear Mode
|
|
Forum Posting Settings
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|