Ich will für euch eine kleine tutorial reihe über PHP erstellen, ich beginne bei ganz einfachen sachen wie text ausgaben und rechnen und gehe später auf datenbankanfragen usw ein.
Ich werd das alles anhand von source codes die ich selber gemacht hab darstellen. Alle source codes sind kommentiert und die kommentare sind gleichzeitig die beschreibungen der funktionen. Wenn etwas unklar ist, sagt mir einfach bescheid, ich erklärs sofort und/oder editier meinen beitrag. Wird leider alles in englisch sein, aber ihr werdet das schon verstehen, wenn ich es versteh, dann sicher ihr auch.
Hier mal der erste Source Code:
<?php
echo "Welcome to the third PHP Tutorial by Cranky.<br><br>";
echo "In this tutorial, I will show you how to code in PHP!<br><br>";
//Echo is just the output command for text. Everything between the two "" after echo, will be displayed.
// These doubleslashes signalize a comment. You can also comment by entering: /* TEXT */
echo (date("j.n.Y")) ;
echo "<br><br><br><br>";
//Set variable names and values. You will see why, later on.
$name = "Cranky";
$rate = 1.255567;
$salary = 140;
//Calculate salary in dollars!
$monday = (4 * $salary);
$tuesday = (2 * $salary);
$wednesday = (3 * $salary);
$thursday = (0 * $salary);
$friday = (6 * $salary);
//Define values for the week, in my case I assign the sum of the days of a week and call it $week.
$week = ($monday + $tuesday + $wednesday + $thursday + $friday);
//Lets do the same with month:
$month = ($week * 4);
//Now we create the exchange rate. I exchange from euro to dollars:
$in_dollar_week = ($week * $rate);
$in_dollar_month = (($week * $rate) * 4);
//Print out the variables you just assigned:
echo "Hello <b>$name</b>,<BR><BR>";
echo "You earned <b>$in_dollar_week</b> $ this week!<br><Br>";
echo "The salary is about <b>$in_dollar_month</b> $ this month.";
?>