NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > General Marketplace > Everything Else > For Sale / Advertising Board
Reload this Page Looking for PHP Guru to teach me PHP :) - MSN messenger lessons

For Sale / Advertising Board The place to buy, sell or advertise any other products and services.

Advanced Search
1 members in live chat ~  


Closed Thread
 
LinkBack Thread Tools
Old 06-28-2006, 08:05 PM THREAD STARTER               #1 (permalink)
dkr
Respect My Authority!
Join Date: Jul 2005
Location: Canada
Posts: 2,234
dkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant futuredkr has a brilliant future
 



Save The Children Baby Health

Looking for PHP Guru to teach me PHP :) - MSN messenger lessons


Hi,

Lets get straight to the point . My name is Donny, and I really really need to learn some good old PHP. I am a very limited beginner with little to no skill at PHP. I can understand very little, and can barely create simple scripts. Books don't do very good for me, so I think one on one lessons with someone professional at PHP would be better. At least I can get most of my questions answered and is here to teach me exactly what I need to know.

I am looking for someone who is very advanced at PHP, and know what they are doing. I will be requiring information such as previous work, and possibly a portfolio in order to prove how into PHP you are. Please do not PM me if you are as far off as I am, and can only create simple easy-to-make scripts.

A little about how far I am so far as to skills is involved. I have read 'PHP/MySQL Programming for the absolute beginner' up to 1/3 of the whole book. It gets too boring for me, and I can't go any further because I don't understand the 'IF/Else' part. This is what I know so far:

HTML
*Add PHP code to a Web page
*create a variable in PHP
*recognize the main types of variables
*name variables appropriately
*output the values of variables in your scripts
*perform basic operations on variables
*read variables from an HTML form
*create a random integer
*use the if structure to change the program's behavior
*write conditions to evaluate variables
*work with the else clause to provide instructions when a condition is not met
*use the switch statement to work with multiple choices
build functions to better manage your code

*-needs reviewing

That's basically all I know. I want to become a skilled PHP programmer, and this is how I should start, in my opinion, until I get the hang of it. I need to learn 'loops', and everything else that is basic.

As for pay, I am looking to pay anywhere between $10 to $15 per hour. Lower the better of course. Payment will be via PayPal, and will be paid upon request.

If you are interested in any way, please email me at webmaster@ewebproz.com. Please have a messenger ready. Preferably MSN. Please add me: kinkarso@gmail.com. Hope to hear from you soon .
????: NamePros.com http://www.namepros.com/for-sale-advertising-board/211737-looking-php-guru-teach-me-php.html

Thank You,
Donny
__________________
Follow Me (new!): @donnyouyang
Founder @ Rayku | Kinkarso Tech
dkr is offline  
Old 06-28-2006, 09:02 PM   #2 (permalink)
I'll do it
 
-Nick-'s Avatar
Join Date: Dec 2005
Location: India
Posts: 6,939
-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness-Nick- Has achieved greatness
 


Member of the Month
September 2007
Adoption
Hello I can teach you PHP to its best. My classes can be of 2 hours daily out of which I will teach you theory for 1 hour and then give you one hour of practical and I will be online for that one hour.

You can see some of my websites which I have developed in PHP to understand what I am talking about. I will also includde the general things like mod_rewrite, MySQL and others which will be needed along with PHP.

My Sites:

http://www.hotappz.com
http://www.firescripts.com
http://www.hostlime.com
http://www.tluz.com


The above examples are made by me and it includes all the real time experience on RSS, Paypal IPN, Database storage, Login systems, Dynamic Graphs, and other advanced techniques in PHP.

Let me know. Thanks.

Okay now for your queries Here are the answers:

*Add PHP code to a Web page
- Add <?php ?> tags anywhere in the HTML page and you have that block

as php code.


*create a variable in PHP
- $var = 1; Done the variable is created.

*recognize the main types of variables
- Strings, integers, bollean, double and most important varchar.

To check the type of integer gettype() function can be used while to

change the type of variable settype function can be used.


*name variables appropriately
- I prefer microsoft techniques which they taught me when I was doing

MCSD. strings can be "strUser" while Intergers can be "intNumber" so

we can know the variable even after we look at our code one year
????: NamePros.com http://www.namepros.com/showthread.php?t=211737

later

*output the values of variables in your scripts
- Print or echo. and the variable is outputted

*perform basic operations on variables
- Do anything like $var = 1 + 1;
It gives $var a value of 2. $var = $var + 1; It increments the value

of var named variable by one. $intLen = strlen($strVar); Gets the

length of the variable strVar in intLen.


*read variables from an HTML form
- If the PHP.ini settings are set for register globals on then you

get direct access to use it in your script.
EX: if in login form the textbox name is : "login" and password feild

is "pass" then you can directly use it as $login and $pass

*create a random integer
PHP Code:
$rnum rand(1,10); 
????: NamePros.com http://www.namepros.com/showthread.php?t=211737
creates a random number from 1 to 10 and assigns the random number to

$rnum

*use the if structure to change the program's behavior
PHP Code:
if( $intLen <= 10 )
// The lenght of string is smaller then 10
$strVar $strVar $strVar;
}
else
{
$strVar substr_replace($strVar''20, -1);$strVar .= "..";

*write conditions to evaluate variables
- You can use the above format of if and nested ifs for this

*work with the else clause to provide instructions when a condition

is not met
- Same as above


*use the switch statement to work with multiple choices
build functions to better manage your code
-
PHP Code:
switch ($intVar) {
case 
0:
   echo 
"intVar equals 0";
   break;
case 
1:
   echo 
"intVar equals 1";
   break;
case 
2:
   echo 
"intVar equals 2";
   break;

Last edited by nick_mayhem; 06-28-2006 at 09:06 PM.
-Nick- is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


 
All times are GMT -7. The time now is 03:08 AM.

Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger