Posts

Showing posts with the label HTML

how to execute php code in html

1. create   . htaccess   file and write code  RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html this file in htdocs or WWW folder and create your html page and write php code  in html file Example : myfolder    .htaccess    demo.html in demo.html <?php echo "My Name is rajeev "; ?>

unicode of rupees symbol

₹ Unicode of rupee symbol   &#x20b9; 

How To Use HTML Editor online

how to use html editor 1. download html editor from  http://nicedit.com/download.php 2.  copy and paste in a folder ,  Example: A   folder name 3. now create new folder within A  folder , Example : B     Folder name 4.   two file   nicEdit.js    and   nicEditorIcons.gif   (get from download)  paste on A folder 5. create demo.html file ,  on B  folder 6.   demo.html <script type="text/javascript" src="../nicEdit.js"></script> <script type="text/javascript"> // add text editor  bkLib.onDomLoaded(function(){ var myEditor = new nicEditor({fullPanel : true }).panelInstance('mytxtarea');   myEditor.addEvent('add', function() {   }); }); </script> <h4>Textarea</h4> <textarea name="area1" cols="40" id="mytxtarea" name="mytxtarea">     </textarea> 7.  how to get content from nicedit  function ge...