I surely would appreciate some help / direction wish a new project.
The project requires a script or software that will work from a list of URL's and generate a basic HTML page for each URL on the list ... with a few unique values .. then name the file something like "(unique1)-(unique2).php"
The page needs to look something like this:
<?php $name = "unique name";
$image = "unique.jpg";
$link = "unique url";
$location = "unique location";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body>
</body>
</html>
I need about 1,200 pages of of the above plus another 1,200 with other HTML tags:
<iframe src ="(unique1)-(unique2).htm" width="" height="">
</iframe>
I can do pretty much everything else with search and replace.
I have searched all over the web as best I know how and haven't found anything that looks like it will work.