How to save image names while reading a file
Posted: Tue Dec 19, 2006 11:02 pm
Hello,
I have read a file from PHP function.
I want to save all the images name in an array or session.
Like my HTML CODE is this
How can i do this??Any idea
I have read a file from PHP function.
I want to save all the images name in an array or session.
Like my HTML CODE is this
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="80%" border="1" align="center">
<tr>
<td width="52%">Text 1 </td>
<td width="48%">Text2</td>
</tr>
<tr>
<td><img src="blog_header4.jpg" width="200" height="150" /></td>
<td><img src="blog_header5.jpg" width="200" height="150" /></td>
</tr>
</table>
</body>
</html>
How can i do this??Any idea