Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 03-30-2005, 02:20 PM   #1 (permalink)
Crazy
 
PHP vs. ASP.NET

Here's the project:

1) Users pay via credit card online to join a group.
2) Users login to the system which provides a content specific webpage in regards to their group.

This is about as basic as I can make things. It's not a huge endeavor- nothing needs to be logged or monitored. All data is harmless and low-priority (save the credit cards info, which is a one time thing) so we're not worried about making things very grand. I'm most concerned about my limitations in the future as far as delivering the data.

The current design for the project is oriented around filtering information from the database. Currently there are no plans to do any computations or processing on-the-fly of the information. However, the goal is to develop the project with the assumption that such tasks will be created.

My incling for this project is to do it in PHP. It's fast, easy, and works so smoothly with MySQL. It will also mesh well with the current design of the website which uses CSS for a modular approach. The question however, is what to do down the line? I realize that ASP.NET is merely a platform- if we chose to use it, we'd develop in C# and/or Java. This would allow much more conceptual flexability becuase of better object oriented design. It's not to say that PHP can't do these things. Rather, that if things were to become very complex, it would be easier to plan them out with a higher-level language.

In the long run, I see both approaches fairly equal. PHP will be quicker to start- It'll be easy to talk to the database in long or short run. However, it'll be more difficult to conceptually plan out more complex tasks. With ASP.NET there will be a slower start, but conceptual design will be easy. Talking to the database will be more difficult however, as ASP.NET is not as seemless as PHP. I don't mind either just so long as things don't switch once the project has started.

I suppose that given the scope of the project, things will ultimately boil down to opinions. I'm curious as to what you folks think. Also, if there are any suggestions, I'm all ears.

Last edited by Robaggio; 03-30-2005 at 02:31 PM..
Robaggio is offline  
Old 03-30-2005, 02:54 PM   #2 (permalink)
Professional Loafer
 
bendsley's Avatar
 
Location: texas
I would go with PHP. At least if you do it that way, you can run it on multiple platforms where ASP.NET is limited to Windows .NET.

PHP can connect to a multitude of databases as well.
PHP 4 | PHP 5 | ASP.NET
Software price: free free free
Platform price: free free $$
Speed: strong strong weak
Efficiency: strong strong weak
Security: strong strong strong
Platform: strong strong weak (IIS only)
Platform: any any win32 (IIS only)
Source available:yes yes no
Exceptions: no yes yes
OOP: weak strong strong

Price: Here, we must consider not simply the price tag of the initial investment, which, in the case of PHP, is obviously free, but also the implementation, maintenance, and debugging costs. In the case of PHP, you may invest in the Zend optimization engine. With ASP, however, you're investing from the very beginning, and you're spending for add-on technologies—libraries for doing graphics manipulations, for instance. But, in the long term, PHP isn't going to press you to upgrade and collect more licensing fees. Everyone who has dealt with complex licensing also knows that companies spend time and money just ensuring they are compliant. Furthermore, you have a difference in response when getting bugs fixed. This, of course, translates to time, which translates to cost for overall development.

Speed and efficiency: ASP.NET is a framework allowing you to use various programming languages. In addition, it is touted as having a great object-oriented model. All this is true, but it becomes a detriment as far as speed is concerned. For all that advantage, there is a lot more code to run through to execute the same ASP page than you have to execute in the PHP engine for an equivalent PHP page. PHP is the quick-and-dirty type of solution, the one to get the job done. And though a lot of robustness has been added to it since its 2.0 and 3.0 days, it still retains that core optimized high-speed approach.

Speed is not the only consideration. Memory usage is also important.

Security: ASP.NET runs on IIS, which has been compromised innumerable times, as evidenced by IT news reports every other week. It has become such a liability, in fact, that in spite of all the marketing dollars spent on it, many IT professionals refuse to have their networks exposed with an IIS Web server. PHP, however, works with Apache, which has a proven track record of speed, reliability, and hardened security. Check www.securityfocus.com for more information.

Cross-platform applicability: ASP.NET runs on IIS and is starting to run on Apache, which can run on a whole host of platforms. PHP has been designed to work with Apache from the beginning, so you have many proven and reliable server platforms to choose from.

Open source opportunity: Open source is not just some philosophical torch idealistic programmers, or companies wanting to save a few bucks on licensing costs, are carrying. When you're dealing with bugs in the software itself, open source can be a serious godsend.

In either case, with PHP or ASP.NET, you have a large user base using the software and possibly encountering bugs. With ASP.NET, those bugs have to go through a bureaucratic process to get acknowledged, fixed, tested, and rolled out in a new patch or release. PHP fixes, however, can get fixed quickly and rereleased. Anyone who has watched open-source development knows new releases and patches often come out in days rather than in weeks or months, as with commercial software. If that's not fast enough, you can always fix a problem yourself if you have to.
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane."
bendsley is offline  
Old 03-30-2005, 03:27 PM   #3 (permalink)
Banned from being Banned
 
Location: Donkey
Having been around the block with pretty much every scripting language available, I choose asp.net mainly because it's much more easier to deal with, program, and maintain. I personally HATE dealing with scripting languages, and C# kinda fixes that for me. Plus I know .net almost inside and out, so I can easily override base controls and classes for my own purposes (which, depending on the project, you may need to do).

Speed and efficiency are pretty trivial, especially with a very basic online app that only deals with users paying via credit card and logging in. Generally when these platforms are compared, there are some ridiculous examples used, like heavy scientific apps that aren't even written by 1% of the programmer base for that language.

In the end, there's no solid definite answer and it doesn't really matter because linux also has mono that ties into apache... so it really just boils down to preference, just like J2EE vs. .NET.

You could go back and forth all day on how fast something is vs. another, but when it comes down to it it's milliseconds of processing time per thousands of users per second that... from the sounds of your site, you won't even remotely have to ever deal with.

[edit]
Asp.net is much easier with handling data than you'd think! I think it's much better than PHP.
__________________
I love lamp.

Last edited by Stompy; 03-30-2005 at 03:31 PM..
Stompy is offline  
Old 03-30-2005, 03:56 PM   #4 (permalink)
Crazy
 
Speed/Memory arn't issues. The project won't ever get that big.
Money is also not an issue- everything is already provided. The project is for my college- we're just one department in one division of the school.

I'd feel better if there were more external factors (what kind of server, etc) to push me in a certain direction. Unfortunatly it's completely open-ended, which is why the decision has to be made based on the project's own specifications. Limitless options are supposed to be a good thing! But there's too much to choose from
Robaggio is offline  
Old 04-02-2005, 03:56 PM   #5 (permalink)
Crazy
 
trib767's Avatar
 
Location: London, UK
PHP all the way.
trib767 is offline  
Old 04-04-2005, 01:51 AM   #6 (permalink)
d*d
Addict
 
d*d's Avatar
 
I asked a similar question here http://www.tfproject.org/tfp/showthread.php?t=76272 I ended up using php, I encountered no problems and would definately reccomend it, I have however not used ASP in anywhere near as much detail.
d*d is offline  
Old 04-04-2005, 08:01 PM   #7 (permalink)
gal
Insane
 
gal's Avatar
 
The more equally attractive two alternatives seem, the harder it can be to choose between them - no matter that, to the same degree, the choice can only matter less. -- E Fredkin

Meaning.. you shouldn't spend time pondering over hard decisions if the alternatives are both good.
gal is offline  
Old 04-05-2005, 05:00 AM   #8 (permalink)
Crazy
 
ryborg's Avatar
 
Why use asp.net with Java? You should take a look at the Struts or Spring frameworks with Ibatis or Hibernate if you want to go the Java route. Both Struts and Spring are nice MVC architectures that will help you make your website scale easily if you ever decide to expand it later down the road, and by using Ibatis or Hibernate, dropping in an entirely new database (something other than MySQL) would also be very easy. However, such frameworks can sometimes be more than is necessary for a small website, at which point I would suggest using PHP. However, if you are interested in going a purely Java route, which is actually my preferred way of doing it, go check Struts and Spring out – they are great starting points for creating robust websites.
__________________
Solve two problems at once. Feed the homeless to the hungry.
ryborg is offline  
Old 04-05-2005, 06:48 PM   #9 (permalink)
Insane
 
For the long run, I'd have to agree with ryborg, the Struts or Spring frameworks and Java are really nice. I'm kinda partial to Spring and Hibernate (probably cause I have a thing for reflective coding and XML). Looking around on the net you can find tons of examples using Spring and Hibernate, not to mention books about them both (Spring in Action, etc..).

For the short term I would consider LAMP (Linux, Apache, MySQL, PHP) the way to go.
username is offline  
Old 04-06-2005, 01:31 AM   #10 (permalink)
d*d
Addict
 
d*d's Avatar
 
wheres the money at though? I see more ads for ASP programmers than PHP, php may be the better programme but if the market is demanding ASP then surely thats the winner (I'm not an idealist)
d*d is offline  
Old 04-07-2005, 07:49 AM   #11 (permalink)
Insane
 
Location: Austin, TX
I say go with PHP not only because I believe it to be a better platform (PHP has object-oriented stuff in it if you really want classes and objects), but because you're at a university. Universities are supposed to be about the pursuit of knowledge, and, more importantly, the sharing of knowledge. Being tied to Microsoft (or any other proprietary platform) severely hinders that ability.

Also, I think it is silly for colleges to teach students to program in MS-centric environments simply because "that's what the market is demanding". If you want to be a VB/VC++/C# programmer, go to your local community college and get an associates degree. If you really want to be a computer scientist, you should be able to go to a real college and learn about all different kinds of platforms and languages, from Linux to Unix to Windows to VMS to AIX, and PHP to ANSI C to PostScript to C#.

/rant
skaven is offline  
Old 04-07-2005, 07:23 PM   #12 (permalink)
Crazy
 
Well the decision has been made for me: the university tech head-honchos are phasing out PHP. This is a complete surprise- they hired a new head admin who at the time, they thought was hugely into PHP. Turns out, when he got intertwined with things, he did a complete 180 and started moving towards ASP.NET as if he'd never heard of PHP.

skaven:
The college isn't teaching MS-centric things. This is something completely separate from the education. The college basically has it's own ISP which they make money off of.
Robaggio is offline  
Old 04-08-2005, 06:56 AM   #13 (permalink)
Insane
 
Location: Austin, TX
Oh, I wasn't implying that your college was doing that. I was just frustrated over my own college, which over the past four years has been systematically phasing out all unix/linux-based courses in favor of more "salable" courses in ASP.NET, Visual *, and other MS-centric platforms.

Sorry that I didn't point that out more clearly.
skaven is offline  
Old 04-09-2005, 12:10 AM   #14 (permalink)
Crazy
 
ryborg's Avatar
 
On a slightly related topic - I work in web systems development for a company here in town, and just recently one of the other departments handed us an *ancient* Visual Basic app that desperately needed emergency fixing. We generally implement Java solutions in my department, and suddenly switching over to VB has not been fun. Where did "==" go? Where did ";" go? However, I will say that just learning Microsoft Software does not make you totally marketable. It seems Java's roll in today's industry is growing, so don't limit yourself to learning Microsoft only.
__________________
Solve two problems at once. Feed the homeless to the hungry.
ryborg is offline  
Old 04-25-2005, 08:27 PM   #15 (permalink)
Upright
 
As a Unix sysadmin with at least a small amount of experience, I would have voted for PHP as well. Large-scale projects are quite implementable in PHP (Wikipedia is the largest that comes to mind), and it is much more versatile than ASP.NET. With ASP, you're tied to Windows-only; with PHP, you can run on any platform, and backend the thing on anything from a plain-text file to an Oracle database.

Your department head doesn't sound very intelligent, at least not from my experience. I could see deciding on JSP over PHP, but nobody with field experience picks a Microsoft solution when they have any alternatives.
Matadon is offline  
Old 04-25-2005, 09:20 PM   #16 (permalink)
Crazy
 
Quote:
Originally Posted by Matadon
Your department head doesn't sound very intelligent, at least not from my experience. I could see deciding on JSP over PHP, but nobody with field experience picks a Microsoft solution when they have any alternatives.
My department head has no control over the situation. He's at the mercy of the campus's larger web division, which has decreed that all web applications from this point out be through ASP.NET.

It makes sense to me- the main web department REALLY knows their stuff. They can't have the 100's of other school departments going off and running 50 different languages and such. They need a way to manage the school's network, and it makes sense to conglomorate things. They could have just as easilly gone PHP, just that the main admin is gung ho about ASP.NET.

It's silly though... my department head is getting really pissed at the main web admins. He thinks that the way they do things is silly and only seeks to slow him down. I disagree however- I'm glad that there is a team of people with their stuff in order taking care of the main system. We should be concerned with coding, not administering- and that's exactly the way things are setup. I think my boss just wants control though... but what he doesn't understand is that he doesn't NEED it. (And what he most definatly doesn't understand is that he doesn't WANT it... that's a bite much bigger than he can chew at this point.)

Last edited by Robaggio; 04-25-2005 at 09:27 PM..
Robaggio is offline  
 

Tags
aspnet, php


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 On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 05:35 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360