XAJAX

XAJAX

Posted by Sajith M.R in php, php source code on 03. Jun, 2009 | 0 Comments

Basically using xajax “You can directly call php functions from your javascript code”
Xajax will do the rest. 
For example, if you are going to write a javascript function Capitalize which captilaze your textbox content when you press a button.
Here is the pure html/javascript code for that:
=============================================
<script>
function Capitalize()
{
      var t = document.getElementById(’cap’).value;
      document.getElementById(’update’).innerHTML [...]

The Tale of Tail (Unix Command)

The Tale of Tail (Unix Command)

Posted by Sajith M.R in linux on 06. Mar, 2008 | 2 Comments

The most interesting and useful command i ever used is tail in unix. As the name indicate its duty is to show the last lines of a particular file. When take the case of log files such as error logs, always we have to know the last lines or last updations instead of reading from [...]