Buy Sell Discuss UK Domain Names at AcornDomains.co.uk

Today's Drop Dates are: 18-02-2012 or 25-02-2012   All times are GMT. The time now is 11:37:18 PM.
Domain Name Sales Domain Software Calculate UK Domain Drop Dates Domain Registration NameDrive Domain Parking Subscribe to our Domains For Sale newsletter
Go Back   Domain Forum Acorn Domains Buy Sell Auction UK Domains > Domain Name Tools and Resources > Domain Tools
Connect with Facebook

Domain Tools Discuss and evaluate domainer tools and resources

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 12-07-2008, 09:10:54 AM     #1 (permalink)
Administrator
 
admin's Avatar
 
Join Date: Jun 2004
Posts: 8,601
admin has disabled reputation

PHP Development Software Tool

I am looking for some Windows based software to allow me to build MySQL/PHP driven websites.

I found :
Database driven PHP web site with no programming

Which seems OK, has anyone used it?

What alternatives are there?

Thanks

Admin
admin is offline  
Old 15-07-2008, 10:08:56 AM     #2 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,507
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

I'm a PHP/MySql Developer, alot of those automatic php/database programs, create nasty databases with masses of redundant data which makes future queries unworkable.

They are also limited by their programmers forethought, kinda like buying a smartcar and wondering why you can't fit 4 people in it. Majority of them, I'd heard about and read about don't handle joins very well, they virtually don't do regex.

Database Software | PHP MySQL (PHPMagic) is another one.

If its a specific task, it maybe better for you to visit rentacoder or scriptlance and buy in what you need, or find someone you can trade with, to make the basics for you.
Skinner is offline  
Old 15-07-2008, 10:14:47 AM     #3 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,507
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

oh one more thing, when defining your schema for the databases, use prefixes as it will save the hair on your head, for example

table domain
-id
-name
-reg
-exp
-price

table buyer
-id
-name
-email
-tel

table registrar
-id
-name
-website

When you come to work with that, you will end up mixing name and id up for certain, and if you do manage to get software that will do a join, you will have to alias each one, and most software that can do joins odds on, won't have automatic alias ability.

You really should use more like


table domain
-dom_id
-dom_name
-dom_reg
-dom_exp
-dom_price

table buyer
-buy_id
-buy_name
-buy_email
-buy_tel

table registrar
-reg_id
-reg_name
-reg_website

Makes it easy to track and use your data, also makes it easier to expand once you know some php/mysql

(sorry after thought post).
Skinner is offline  
Old 15-07-2008, 10:22:55 AM     #4 (permalink)

 
Join Date: May 2007
Posts: 1,148
monaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond repute

After 20 or so years working with databases (and looking / optimizing other people's work), unless you are just doing a very simple list into a table, you really need to be designing your database properly and understand a bit about how databases work.

I had a customer recently who was considering a dedicated server for his system as it was so slow, after a few hours consultancy he's now running this on a shared hosting server and handling more than twice the workload and has almost zero impact on the server.

Badly written database applications will quickly get your account noticed by the system admin
__________________
Alex Monaghan - Drop Catch & Drop Lists - PM for details
Online Accounting|Pine Furniture|Barbie
monaghan is offline  
Old 15-07-2008, 11:37:18 AM     #5 (permalink)
Administrator
 
admin's Avatar
 
Join Date: Jun 2004
Posts: 8,601
admin has disabled reputation

Thank's for the input.

All I'm really trying to do is speed up the process as my knowledge and time are both limited.

So you code PHP sites by hand?

Admin
admin is offline  
Old 15-07-2008, 11:42:58 AM     #6 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,507
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

I personally write the bulk of my raw php in zend studio (Zend Studio - The Leading PHP IDE from the PHP Experts - Zend.com), if it need it to look pretty I use dreamweaver (Adobe - Dreamweaver CS3, Web Site Design, Web Page Design, Web Design Software).

I have been known (man I'm gonna look like such a geek), to edit PHP using the notepad/jotter feature on my mobile phone (p910i) by ftp'ing into the server to correct some code while, I was away from home for a week ago.

Puritans will say use vi or notepad or some other crap, but a little help never hurt anyone, and syntax highlighting is worth its weight in gold at times.
Skinner is offline  
Old 15-07-2008, 12:08:44 PM     #7 (permalink)

 
Join Date: May 2006
Posts: 1,188
Jeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond reputeJeewhizz has a reputation beyond repute

All our PHP code is done by hand as well. We use the Zend studio suite as well - it's very nice
Jeewhizz is offline  
Old 15-07-2008, 12:19:49 PM     #8 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,507
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

The only thing, I miss in Zend is the WYSIWYG view that dreamweaver offers in split view.

Amazing is the word for zend studio
Skinner is offline  
Old 15-07-2008, 12:37:44 PM     #9 (permalink)

 
Join Date: May 2007
Posts: 1,148
monaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond reputemonaghan has a reputation beyond repute

Anything with a colour coded editor is good, something that will match your "{"'s can help find things when you can't why the wrong bit of code is executing.

As you build things you can then build into a library and re-use next time to save time, after a few similiar sites, the you'll soon have a shopping list of data tables and code routines to pull together.
__________________
Alex Monaghan - Drop Catch & Drop Lists - PM for details
Online Accounting|Pine Furniture|Barbie
monaghan is offline  
Old 15-07-2008, 12:47:56 PM     #10 (permalink)

 
tifosi's Avatar
 
Join Date: Oct 2004
Location: Lancashire
Posts: 1,907
tifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond reputetifosi has a reputation beyond repute

Quote:
After 20 or so years working with databases (and looking / optimizing other people's work), unless you are just doing a very simple list into a table, you really need to be designing your database properly and understand a bit about how databases work.

I had a customer recently who was considering a dedicated server for his system as it was so slow, after a few hours consultancy he's now running this on a shared hosting server and handling more than twice the workload and has almost zero impact on the server.

Badly written database applications will quickly get your account noticed by the system admin
Amen to that...

First rule of database work... 'thou must normalise thy database to the 3rd normal'
Second rule of database work... 'If you don't understand rule 1, then find out why'.

I still use gVim - with a custom theme - for all my development work. But that's because I am a geek! and learned programming on it. I use a localhost install to check functionality. WAMP is good. Highly recommended as a local test environment.

Never got used to wsywig, but been told dreamweaver is the industry standard.

S
tifosi is offline  
Closed Thread



Bookmarks

Tags
development software, mysql, php

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Domain Name Community Replies Last Post
PHP Builder admin Scripts and Coding 1 02-12-2007 08:18:08 AM
Domain Research Tool admin Domain Tools 10 06-11-2006 12:59:01 PM
Free PHP software admin Website Design 0 17-02-2006 09:54:11 AM

75% off Domains at Network Solutions®.


All times are GMT. The time now is 11:37:18 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.6.0 RC 2
All content on Acorn Domains is member generated and is not moderated before posting. All content is viewed and used by you at your own risk and AD does not warrant the accuracy or reliability of any of the information. The views expressed are those of the individual contributors and not necessarily those of AD. Please contact us to report any issues or send a PM to "Admin".