473,327 Members | 2,016 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

PHP Question

For a NON-Technical person how easy is it to learn PHP ? (for website
changes - mostly minor changes)I have never done any programming.

If any one would be kind enough to let me know I would appreciate it.

Thanks
Sarah
Jul 17 '05 #1
5 1899
"sarah rosen" <sa*********@yahoo.com> wrote in message
news:ce*************************@posting.google.co m...
For a NON-Technical person how easy is it to learn PHP ? (for website
changes - mostly minor changes)I have never done any programming.

If any one would be kind enough to let me know I would appreciate it.

Thanks
Sarah

Well, this is purely subjective, I would venture to say that would depend on
your grasp of certian things now, such as (but not limited to) HTML, The
differnce between Client-side/Server-side, and if you can program your own
VCR, Cellphone.

Please take not any offense to what I am saying, but it is rather a
subjective subject. Some may say quite easily, some may say hard. There is
no right/wrong answer, it is your ability at this point.

Oh Boy, I am starting to sound like a showlin priest (however it is
spelled)

If you feel that you are web savvy, then you just might be able to pick it
up, dont let others fool you, some try on purpose to make it look harder
than it really is. I tought one of my employees PHP, he didn't know he had
it in him, he was a rather bright kid. So I had him work with me on some
projects, asked his opinion on a few things, and had him research ansewers,
and then implement the code. After the project was over, I showed him how he
coded the entire thing, I just help debug, and guide the project. He did all
the programming himself.

Just pace yourself, let it catch on at its own pace, and if you decide to
buy a book, buy one that you are able to start learing from the moment you
pick it up. If you pick up a book, and thumb through it, and it all looks
like giberish, thats not the book for you, look for one that you understand,
and you start to learn, just from a few pages in the begining. Skip all the
history of stuff, but only for this quest to find the book, after you buy
it, read it from cover to cover.

Well, that was probly more information than you expected, and probly tells
you nothing. :)

Hmm, maybe I should think this whole priest thing......Na, not for me.

--
Mike Bradley
http://www.gzentools.com -- free online php tools

Jul 17 '05 #2

On 16-Jan-2004, sa*********@yahoo.com (sarah rosen) wrote:
For a NON-Technical person how easy is it to learn PHP ? (for website
changes - mostly minor changes)I have never done any programming.

If any one would be kind enough to let me know I would appreciate it.


As languages go PHP is pretty simple. However, the environment where PHP
runs is not.

PHP is a server side scripting language, which means it runs on the server.
The client (browser) doesn't know PHP, it's language is HTML (plus
JavaScript etc.) So, the PHP on the server has to send HTML to the browser
and receive data from the browser. All this is done page by page making it
complicated to 'remember' things between pages. To further complicate
things, most PHP scripts access some kind of database (e.g. MySQL). So, in
addition to PHP, HTML and JavaScript, you have to worry about SQL.

Any one of these languages, PHP, HTML, JavaScript, and SQL, could fill a
pretty large book. Combine them with their interactions and add on security
concerns and you have the programming equivalent of rubbing your stomach and
patting your head while singing Silent Night and tapping out 76 trombones
with your feet. OK it's not quite that bad, but it's very complex for the
beginner and unless you're prepared to do a fair amount of studying it will
be very frustrating.

The good news is the people who hang out here are really helpful. I've seen
several threads where it was obvious that the original poster was a novice
in way over his or her head and the replies were patient, helpful, polite
and often quite extensive.

If you decide to take the plunge, start by learning HTML. When you move on
to PHP remember that the goal of PHP is to send HTML to the browser. Getting
a good grasp of what's HTML and what's PHP will be a big help.

Good Luck.

--
Tom Thackrey
www.creative-light.com
tom (at) creative (dash) light (dot) com
do NOT send email to ja*********@willglen.net (it's reserved for spammers)
Jul 17 '05 #3
That depends on how smart you are, of course ;-)

But seriously, computer programming is not that hard. I work in the area of
foreign language acquisition and I can tell you that it's far easier to
learn a programming language than to learn French or Russian.

Here's a few lines of PHP code that actually does something useful. See if
you can figure out what it does.

$recipient_name = "John";
$recipient_email = "jo**@hotmail.com";
$sender_name = "Jane";
$sender_email = "ja**@yahoo.com";

$circumstance = "our relationship is over";
$when = "last night";
$where = "at the Gay Pride parade";
$action = "make a pass at";
$whom = "a PHP programmer";
$your_quality = "man";
$my_state = "miserable";
$items_returned = "your love letters";
$items_kept = "the syphillis you gave me";

$message = "Dear $recipient_name\n\n, I don't know quite how to tell you
this but, $circumstance. I think I first realized it $when $where and I saw
you $action $whom. I'm sure you're $your_quality enough to realize how
$my_state I've been. I'm returning $items_returned but I'm holding on to
$items_kept as a keepsake. I want you to know that I'll always treasure your
friendship.\n\nSincerely, $sender_name.";

mail($recipient_email, "A parting note", $message);

Uzytkownik "sarah rosen" <sa*********@yahoo.com> napisal w wiadomosci
news:ce*************************@posting.google.co m...
For a NON-Technical person how easy is it to learn PHP ? (for website
changes - mostly minor changes)I have never done any programming.

If any one would be kind enough to let me know I would appreciate it.

Thanks
Sarah

Jul 17 '05 #4
"PHP Question" really isn't an ideal subject when asking a question in a
PHP newsgroup. All questions here are (or should be) PHP questions.

Better would be: "How easy is PHP for a beginner?"

Jochen
Jul 17 '05 #5
sarah rosen wrote:
For a NON-Technical person how easy is it to learn PHP ? (for website
changes - mostly minor changes)I have never done any programming.

If any one would be kind enough to let me know I would appreciate it.

Thanks
Sarah


A couple of online sources for good "getting started with PHP" info.:
PHP.net - http://www.php.net/manual/en/getting-started.php
W3Schools - http://www.w3schools.com/php/
Webmonkey -
http://hotwired.lycos.com/webmonkey/...php/index.html

As far as books go, I started with (and liked) these:
PHP and MySQL Web Development, Second Edition
by Luke Welling, Laura Thomson
Beginning PHP4
by Chris Lea, Wankyu Choi, Allan Kent, Ganesh Prasad, Chris Ullman
(You might want to get "Beginning PHP5" instead)

Regards,

- Dan
http://www.dantripp.com/
Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Mohammed Mazid | last post by:
Can anyone please help me on how to move to the next and previous question? Here is a snippet of my code: Private Sub cmdNext_Click() End Sub Private Sub cmdPrevious_Click() showrecord
3
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
3
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table...
10
by: glenn | last post by:
I am use to programming in php and the way session and post vars are past from fields on one page through to the post page automatically where I can get to their values easily to write to a...
10
by: Rider | last post by:
Hi, simple(?) question about asp.net configuration.. I've installed ASP.NET 2.0 QuickStart Sample successfully. But, When I'm first start application the follow message shown. ========= Server...
53
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from...
3
by: Zhang Weiwu | last post by:
Hello! I wrote this: ..required-question p:after { content: "*"; } Corresponding HTML: <div class="required-question"><p>Question Text</p><input /></div> <div...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.