1.
Quakenet/#php Tutorial - en - Concatenation operator
One operator of php is the concatenation operator which is written as a single dot ... However after the concat operator you can write any string which may ...
2.
Quakenet/#php Tutorial - en - Concatenation operator
However after the concat operator you can write any string which may contain any escape sequences you want. To don't get irritated you first write the full ...
3.
Quakenet/#php Tutorial - en - Arrays
The indexes can also be assigned during the array construct. Instead of writing the value you can pretend the value with x => where x is the index for the ...
4.
Quakenet/#php Tutorial - de - MySQL / Tabellen
- [ Translate this page ]In MySQL werden Daten in Tabellen in Form von Datensätzen abgespeichert. Damit eine solche Tabelle identifiziert werden kann besitzen alle Tabellen einen ...
5.
Quakenet/#php Tutorial - en - Switch statements
A switch statement is a special control structure. Instead of checking any condition or expression like an if statement a switch statement can only be used ...
6.
Quakenet/#php Tutorial - en - MySQL / Add rows
Aug 17, 2008 ... If a column is not written there mysql will save a defaut value in this column for the new row. As an example an INT column have the default ...
7.
Quakenet/#php Tutorial - en - MySQL / Add rows
Aug 17, 2008 ... After we created the tables with the colums we want to add new rows into the table. This can be done with the INSERT INTO command. ...
8.
Quakenet/#php Tutorial - en - MySQL / Output values
Aug 17, 2008 ... MySQL / Output values. Output a value; Indent the SELECT query ... The values for a mysql keyword are indented by one level. ...
9.
Quakenet/#php Tutorial - en - Indent
To increase the readability of your php code you should indent your code in a proper way. As an example we got the following php code. ...
10.
Quakenet/#php Tutorial - en - Template system
With a template system you try to split the php script into two parts, one for the logic and one for the output. This is similar to a Model View Controller. ...