Jump to content

editing PHP template


Recommended Posts

When I create a new php file in dreamweaver and open it, I get

[code]<!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>
</body>
</html>
[/code]

Wheras I'd like to get something like:

[code]<?php
// author:
// date:

class * {
  function __construct() {
   
  }
}


?>[/code]

Does anyone know how to do this?
Link to comment
https://forums.phpfreaks.com/topic/15408-editing-php-template/
Share on other sites

If you want to do that, you'll need to goto:
C:\Program Files\Macromedia\Dreamweaver 8\Configuration\DocumentTypes\NewDocuments
Now find Defualt.php and open it within Dreamweaver. Replace the defualt html code with your PHP code. Save it. Exit DW8. Reload Dreamweaver. Goto create a new PHP file. It should now load up the new defualt.php file which should now have your PHP code displayed.
Link to comment
https://forums.phpfreaks.com/topic/15408-editing-php-template/#findComment-62456
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.