Connecting Tech Pros Worldwide Help | Site Map

Change HTML

  #1  
Old June 29th, 2006, 06:45 PM
WhatsPHP
Guest
 
Posts: n/a
Can PHP be used to change my clients static HTML pages? By themselves?

Instead of having to download the HTML from the server, then use
dreamweaver and upload the file back?

Thanks
Rohan

  #2  
Old June 29th, 2006, 09:55 PM
Rik
Guest
 
Posts: n/a

re: Change HTML


WhatsPHP wrote:[color=blue]
> Can PHP be used to change my clients static HTML pages? By themselves?[/color]

How do you mean 'By themselves'?

[color=blue]
> Instead of having to download the HTML from the server, then use
> dreamweaver and upload the file back?[/color]

You can manipulate files on the same server without effort: look into
fopen(), fwrite() and the like. If PHP runs on a different server, it's
something different. A possible solution would be to let PHP connect through
FTP, download the html-file, change it, and upload it again. Should be no
problem.

Grtz,
--
Rik Wasmus


  #3  
Old June 29th, 2006, 11:35 PM
Garbage Monster
Guest
 
Posts: n/a

re: Change HTML


PHP - server side based approach
Java Script - could be embedded into HTML and with a use of document.write() you can modify HTML page without refreshing it from the server

Example:

=========== Code Starts Here =============
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>An Example of JavaScript code</title>
<head>
<body>
<script language="JavaScript">
<!-- Use the HTML comment to hide JavaScript from old browsers
document.write("This text was written using JavaScript.")
// End hiding JavaScript -->
</script>
<NOSCRIPT>
You see this if your browser won't run JavaScript.
</NOSCRIPT>
</body>
</html>

=========== Code Ends Here =============

Rik wrote:[color=blue]
> WhatsPHP wrote:[color=green]
>> Can PHP be used to change my clients static HTML pages? By themselves?[/color]
>
> How do you mean 'By themselves'?
>
>[color=green]
>> Instead of having to download the HTML from the server, then use
>> dreamweaver and upload the file back?[/color]
>
> You can manipulate files on the same server without effort: look into
> fopen(), fwrite() and the like. If PHP runs on a different server, it's
> something different. A possible solution would be to let PHP connect through
> FTP, download the html-file, change it, and upload it again. Should be no
> problem.
>
> Grtz,[/color]
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to form a method to change HTML TD Attributes when passed element ID? Shannon answers 2 July 21st, 2007 02:55 PM
How to change HTML file extension as .mht using HTML code ? VishalK answers 6 January 4th, 2007 07:16 PM
change HTML label on the fly Matt answers 3 July 23rd, 2005 12:48 PM
How do I change HTML objects with my JS strings ? H answers 2 July 20th, 2005 01:01 PM