Mackey18 Posted September 26, 2009 Share Posted September 26, 2009 Hi guys, I have posted numerous times here before, asking about creating a retail website using PHP. My I.T. teacher told me it was possible using ASP. He told me i should download a web server, .NetFramework, SQL server Express 2008 and SQL Server Management Studio Express Edition 2005. I have downloaded all of these and now I would like to know, what next? Do I create a Database first? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/ Share on other sites More sharing options...
Garethp Posted September 26, 2009 Share Posted September 26, 2009 Ok, it gets easier. To use PHP, you just need one program http://www.easyphp.org/ That's a Webserver, PHP Parser and SQL Server all in one. Just install that, and place your .php files in the www folder (which will be under Easyphp in your Programfiles) and your ready to roll Here's a good place to start learning PHP http://www.w3schools.com/PHP/DEfaULT.asP Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925307 Share on other sites More sharing options...
hamza Posted September 26, 2009 Share Posted September 26, 2009 Its understood man Create or plan DBASE SCHEMA AND START WORKING ON it by making BACKend AND FRONT END. or if you are new in .NET WOrld THEN TRY TO LEARN basic tUTORILAS of .net AND SQL SErver AND get familiar with the GUI OF VStudio. n then start working on it. Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925311 Share on other sites More sharing options...
Mackey18 Posted September 26, 2009 Author Share Posted September 26, 2009 Thank you Hamza. Can someone explain to me what each of the downloaded programs does? Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925324 Share on other sites More sharing options...
proggR Posted September 26, 2009 Share Posted September 26, 2009 Are you required to use all that software? My school uses a lot of .net software too but I try to avoid it. I'd do pretty much what Hamza said. Plan your db with each entity you'll need. Then plan what attributes about the entities are relevant to include in your database. Then plan the relationships between them all and remove any repeating data if there is any. Then I'd make a mock front end in paint or Photoshop. Something to let you visualize what it's going to look like. Then code it to look like that. Once you have all the pages coded you can work on your script to create the database and your handler scripts that access it. Then it's lots of testing and rewriting scripts until you've covered every possible error. As far as the .net software though, I couldn't help you much with that. Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925391 Share on other sites More sharing options...
nrg_alpha Posted September 26, 2009 Share Posted September 26, 2009 Software issues aside, when dealing with database design, be sure to educate yourself on stuff like the E-R model and normalization (which is what hopelessX was getting at)... All too often, people just dive in creating tables willy-nilly (thinking, 'Hey, this stuff is actually easy! Pfft..'), all the while making serious design mistakes (even violating the 1st normal form in some cases, let alone creating issues leading to data redundancy, insertion and deletion anomalies, etc..). Proper database design is crucial to avoid problems down the road. Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925405 Share on other sites More sharing options...
.josh Posted September 26, 2009 Share Posted September 26, 2009 All that aside, you're not really going to get much help on asp and how MS does it, on a php focused board... Quote Link to comment https://forums.phpfreaks.com/topic/175598-creating-this-website/#findComment-925449 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.