 |
|
|
11-10-2005, 08:45 AM
|
PHP Rocks!!!
|
Posts: 204
|
I've only just started learning PHP but the more I learn the more I realize how much it rocks (especially with mySQL) and wonder why I pushed off learning it for so long.
Sorry, totally random!!! 
|
|
|
|
11-10-2005, 10:04 AM
|
|
Posts: 74
|
been doing it badly for a year and still I love it.
welcome to the club.
|
|
|
|
11-10-2005, 10:53 AM
|
|
Posts: 3,110
Location: Toronto, Ontario
|
It's a nice, easy to learn language and is useful for many projects which require rapid development. It doesn't have some of the nice features you can find in Ruby or Python (which are becoming popular these days, especially Ruby with it's Rails framework), but it does the job most of the time.
Not my personal favorite scripting language  Huge support on the web makes it worth it though 
|
|
|
|
11-10-2005, 06:46 PM
|
|
Posts: 1,832
Location: Somewhere else entirely
|
I've been looking into Python - and I like what I see. I was able to code up an OpenGL program in an hour when in C++ it would have taken a day...
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|
|
|
|
11-13-2005, 05:28 AM
|
|
Posts: 350
|
Quote:
|
Originally Posted by 0beron
I've been looking into Python - and I like what I see. I was able to code up an OpenGL program in an hour when in C++ it would have taken a day...
|
Awsome!!! What was it? 
|
|
|
|
11-13-2005, 05:06 PM
|
|
Posts: 1,832
Location: Somewhere else entirely
|
The program I wrote or the thing I used to write it?
The program was a random test program that drew a texture mapped box and an array of points, you could rotate the view and change the colour of the points with a Tk button.
The OpenGL binding is PyOpenGL:
http://pyopengl.sourceforge.net/
It works great although you need to install about half a dozen other python packages that it relies on.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|
|
|
|
11-13-2005, 05:07 PM
|
|
Posts: 117
|
I was always wondering what the **** Python was. I been doing PHP for about 3 years, also know XSL, XML, XHTML, CSS, JS, AJAX... but everytime i attempt to learn C++, or C or C# , i just cant do it.... >_<
Is Python easier? :P What are its capabilities?
|
|
|
|
11-13-2005, 05:25 PM
|
|
Posts: 1,832
Location: Somewhere else entirely
|
Python is nice - it combines the platform independence of JAVA with the object orientation features of C++, with the unfussiness of a scripting language like PHP.
It is a sort-of interpreted language, in that it behaves like it is interpreted while bits of it are compiled to bytecode behind the scenes.
It comes with lots of useful language constructs built in, can be used to write shell tools very quickly and in a cross platform way. You cxan write fully fledged GUI applications with it too since it comes with the Tkinter set of GUI widgets. You can write a hello world GUI program in three lines of nice python code, or one line of nasty python code...
The type system is a lot like PHPs in that you can assign anything you want to a variable and change what type of thing is in it at will - you don't need to declare them in advance.
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|
|
|
|
11-13-2005, 09:58 PM
|
|
Posts: 9
|
PHP is a great language , i haven't been doing it long but i think im learning pretty quick . I love it's ability with database management , you can do basically anything with it, overall just an awsome language!
|
|
|
|
11-14-2005, 04:33 AM
|
|
Posts: 204
|
And since it's become one of the most popular languages for the web, internet help is everywhere. I also found that a lot of places looking for web designers and what not require that you know php and mysql.
|
|
|
|
11-14-2005, 02:34 PM
|
|
Posts: 535
|
im just learning how to work with mysql, small wonder that most all message boards are php/sql
__________________
I have the heart of a child, I keep it in a jar on my desk.
|
|
|
|
11-14-2005, 11:09 PM
|
|
Posts: 24
|
I've been programming a long time and I like PHP because its fun and easy.
|
|
|
|
11-14-2005, 11:20 PM
|
|
Posts: 9
|
lol sorry about this , but i must say i love your signature dan1088352 lol 
|
|
|
|
11-15-2005, 11:28 AM
|
|
Posts: 880
Location: Leeds UK
|
Im drifting to postgres so i can capitalise on its pl/sql features oh and triggers are a blessing.
is mysql 5 going relational or is it staying as is?
|
|
|
|
11-15-2005, 01:37 PM
|
|
Posts: 535
|
but everytime i attempt to learn C++, or C or C# , i just cant do it.... >_<
lol, I got bored of c++ after like a year of it and went to web programming, though I am thinking of resuming c++ if I have time.
Quote:
|
Originally Posted by XRated
lol sorry about this , but i must say i love your signature dan1088352 lol
|
thnaks 
__________________
I have the heart of a child, I keep it in a jar on my desk.
|
|
|
|
11-17-2005, 06:21 AM
|
|
Posts: 39
|
learn it from very early version until now, i still in love with PHP
__________________
Please login or register to view this content. Registration is FREE - Great PPC sponsor pay up to $2 per click
Yahoo Msg: wobseek ICQ#: 312147020,
AIM: wobseek MSN Msg: Please login or register to view this content. Registration is FREE
|
|
|
|
11-17-2005, 06:53 AM
|
|
Posts: 204
|
Quote:
|
lol, I got bored of c++ after like a year of it and went to web programming, though I am thinking of resuming c++ if I have time.
|
That was the first language I ever learned (short of programming on a TI-82 calculator). It's a good language, but I agree, web languages are more fun...but correct me if I'm wrong, can't you code ASP in c++.
I'm not advanced enough to be using triggers and events yet, though what I've been able to do with a good combination of PHP and javascript has impressed me, so I'm sure I'll get to that level soon. Hopefully hosting services will be upgrading to v5 by then (course how fast I push myself to learn things that might be in two weeks, so doubtful).
|
|
|
|
11-17-2005, 07:29 PM
|
|
Posts: 1,832
Location: Somewhere else entirely
|
You can code ASP.NET in any of the .NET languages I believe, C++, C#, J#, VB....
__________________
UPDATE 0beron SET talkupation = talkupation + lots WHERE post = 'helpful';
Please login or register to view this content. Registration is FREE (aka MSN handwriting for forums)
|
|
|
|
|
« Reply to PHP Rocks!!!
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
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
|
|
|
|