Wallpapers

26 01 2007
http://desktop-it.blogspot.com/
http://www.wallpapers.ru/

function POST (php)

18 01 2007
http://www.asp-php.net/ressources/bouts_de_code.php?id=731

another step

12 01 2007
"tu fais ton petit chemin".... 2k done

happy/sad ? - nothing

mysql table export to file

12 01 2007
SELECT * FROM TABLE ORDER BY ID INTO OUTFILE 'out.file' FIELDS TERMINATED BY '|';

Coaching links (vol 1)

09 01 2007
http://www.leader3000.ru/materials.htm
http://www.leader3000.ru/internet.htm
http://www.leader3000.ru/articles.htm
http://www.leader3000.ru/articles/coacha3.htm

http://www.marchenko.biz/couching.htm
http://www.marchenko.biz/personality.htm
http://www.marchenko.biz/articles/couching.htm

Realinaia otsenka rabotosposobnosti

03 01 2007
Utrom, s 9 do 10 ia delaiu bolishe nejeli mejdu 15:00-18:00, posle 14:00 mojno esheo koe-cito dodelati (gde ne nujno osobo dumati) a posle 16:00 effektivnosti pociti noli.

Takim obrazom lucishe nacinati rabotu okolo 08:00 i zakancivati v 13:00.

Kulinarnie saiti

03 01 2007
http://www.cooking.ru/cats/
http://www.kuking.net/

Compétences requises

03 01 2007
Compétences requises :

o Parfaite maîtrise de PHP 5 en POO et MySQL 4.1.12
o Maîtrise du langage SQL
o Habitude des modèles de conception type MVC, singleton, …
o Bonnes connaissances de PEAR, en particulier les composants MDB2, Pager, Datagrid, Liveuser
o Habitudes de travail sous Linux (connaissances en administration)
o Connaissances de la configuration Apache, SVN, SSH, Postfix
o Respect des normes W3C (XHTML, CSS, JavaScript, XML) et connaissances des normes d’accessibilité WAI

Copy an existing MySQL table to a new table

02 01 2007

This is a great set of two commands that allow the creation and population of a new table with the structure and data of an existing table. This provides a quick means of making a point-in-time copy of a table and is a safe, easy way to make a quick copy of a table for testing an application in development on live data without risking a production environment.
To make a copy of the table recipes which is in a different database called production into a new table called recipes_new in the currently selected database, use these two commands:



CREATE TABLE recipes_new LIKE production.recipes;
INSERT recipes_new SELECT * FROM production.recipes;


The first command creates the new table recipes_new by duplicating the structure of the existing table. The second command copies the data from old to new.

The nomenclature production.recipes is a means of specifying the database and table in the same way that a file can be specified by its directory path. It is optional. If production was left off, MySQL would assume that the recipes table was also in the currently selected database.


http://www.tech-recipes.com/mysql_tips1487.html