Salut à tous,

Je ne m'y connais pas en php mais j'ai besoin de ce langage pour importer du texte dans mes pages web et pouvoir le modifier facilement.

Voici comment ça se présente. Pour l'html, j'ai les pages suivantes:

work_01.html
work_02.html
work_03.html
work_04.html
...

Ces pages sont toutes constituées du code suivant:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<title>interface_works</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" media="screen" type="text/css" title="Design des pages de travaux" href="design_works_pages.css"/>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table height="40"><tr><td></td></tr></table>
<table id="table_description" width="800" border="0" cellpadding="0" cellspacing="0" align="center" valign="top">
	<tr>
		<td width="800" height="10" colspan="5" bgcolor="#000000"></td>
	</tr>
	<tr>	
		<td width="56" rowspan="4" bgcolor="#000000"></td>
		<td class="hooksTop" colspan="3"></td>
		<td width="56" rowspan="4" bgcolor="#000000"></td>
	</tr>
	<tr>
		<td class="hooksColor"></td>
<!-- text description -->
		<td class="textWork1" width="684" height="92" bgcolor="#000000" align="center">mon texte</td>
<!-- End text description -->
		<td class="hooksColor"></td>
	</tr>
	<tr>
		<td class="hooksBottom" colspan="3"></td>
	</tr>
</table>
<table id="table_work" width="800" border="0" cellpadding="0" cellspacing="0" align="center" valign="top">
	<tr><td class="spaceTextWork"></td></tr>
	<tr>
<!-- work picture -->
		<td class="work1" width="688" colspan="3" bgcolor="#000000"></td>
<!-- End work picture -->
	</tr>
</table>
<table id="table_navigation" width="800" border="0" cellpadding="0" cellspacing="0" align="center" valign="top">
<tr><td></td></tr>
</table>
</body>
</html>
J'aimerais, au niveau de cette cellule:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
<td class="textWork1" width="684" height="92" bgcolor="#000000" align="center">mon texte</td>
... pouvoir importer du texte depuis un fichier txt. Cela dit, j'aimerais n'avoir qu'un seul fichier txt et qu'il contienne tous les textes de chacunes de mes pages.

Comment est-ce réalisable? Vu que je ne m'y connais pas en PHP, si vous saviez m'expliquer ça de manière didactique...

Merci d'avance pour votre aide!