Javascript $(document).ready(function() { $(“table”) .tablesorter({widthFixed: true, widgets: [‘zebra’]}) .tablesorterPager({container: $(“#pager”)}); });
Author Archives: Prosoxi.com Webmaster
FLV hanging on last frame?
<script> flowplayer(“player”, “Scripts/flowplayer/flowplayer-3.2.5.swf”, { clip: { autoPlay: true, autoBuffering: true }, onFinish: function() { // set an event handler in the configuration this.pause(); } }); </script>
php load file
function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer; } function parse($file) { global $str; ob_start(); include($file); $buffer = ob_get_contents(); ob_end_clean(); return $buffer;}
Understanding PHP eval function and usage Do more than just evaluating
#1: The syntax behind the eval(); It is very simple and straight forward… You pass any string argument through the eval construct. The string will be treated as any PHP code. The basic syntax is: http://www.intechgrity.com/understanding-php-eval-function-and-usage-do-more-than-just-evaluating/
PHP Mysql Search Sctipt
<?php $hostname_logon = “localhost” ; $database_logon = “” ; $username_logon = “” ; $password_logon = “” ; $connections = mysql_connect($hostname_logon, $username_logon, $password_logon) or die ( “Unabale to connect to the database” ); mysql_select_db($database_logon) or die ( “Unable to select database!” );
Installing MondoRescue. System Backup for bare-metal recovery of Linux
Mondo is a GPL disaster recovery solution to create backup media (CD, DVD, tape, network images) that can be used to redeploy the damaged system, as well as deploy similar or less similar systems. In the event of catastrophic data loss, you will be able to restore all of your data [or as much as …
Continue reading “Installing MondoRescue. System Backup for bare-metal recovery of Linux”