Custom Protein Expression
Functional Protein, 95% Purity
Fast turnaround (2-3 weeks)
1-10 mg from E. Coli expression
for only $1790
No outsourcing to China or India


in vitro Protein Synthesis
Full-length protein in 1 week
95% Purity, From any gene
(toxic or membrane proteins)
Isotopic Labelling for NMR

50 µg~3 mg, $390 to $2500
Excellgen

PHP

How to remove PHPList powered by image

find the following lines in admin/sendemaillib.php file:

  if (!EMAILTEXTCREDITS) {
    $html["signature"] = $PoweredByImage;#’

Powered by PHPlist

‘;
    # oops, accidentally became spyware, never intended that, so take it out again :-)
    $html["signature"] = preg_replace(‘/src=”.*power-phplist.png”/’,’src=”powerphplist.png”‘,$html["signature"]);
  } else {
    $html["signature"] = $PoweredByText;
  }
  innovita edit

Comment these line out and replace them with this:

$html["signature"] = “”;

Alternatively, edit config.php

change

define(“EMAILTEXTCREDITS”,0);

to

define(“EMAILTEXTCREDITS”,1);

Comments (1)

Managing Hierarchical Data in MySQL with Modified Preorder Tree Traversal (MPTT)

Comments

Auto-refreshing dynamic content using AJAX and PHP

The following script will use PHP and Ajax (XMLHTTPRequest) to retrieve current server time in every 10 seconds and then insert the date/time into the html page.

1, html file: time.html

<!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>Auto-refreshing dynamic content using AJAX and PHP</title>
<script type="text/javascript" src="time.js"></script>
</head>

<body onload="ajax(page,'scriptoutput')">
<p>Current Server date & time (updated every 10 seconds):<br />
<span id="scriptoutput"></span></p>
</body>
</html>

2, Ajax file: time.js

var page ="/time.php?time="+date.getTime();
function ajax(url,target)
{
// native XMLHttpRequest object
document.getElementById(target).innerHTML = 'sending...';
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
req.onreadystatechange = function() {ajaxDone(target);};
req.open("GET", url, true);
req.send(null);
// IE/Windows ActiveX version
} else if (window.ActiveXObject) {
req = new ActiveXObject("Microsoft.XMLHTTP");
if (req) {
req.onreadystatechange = function() {ajaxDone(target);};
req.open("GET", url, true);
req.send();
}
}
setTimeout("ajax(page,'scriptoutput')", 10000); //10 seconds
}

function ajaxDone(target) {
// only if req is "loaded"
if (req.readyState == 4) {
// only if "OK"
if (req.status == 200 || req.status == 304) {
results = req.responseText;
document.getElementById(target).innerHTML = results;
} else {
document.getElementById(target).innerHTML="ajax error:\n" +
req.statusText;
}
}
}

3, PHP file: time.php

<?php
putenv('TZ=America/New_York');
echo date("Y-m-d h:i:s A", time());
?>

4, Save and upload these files to your server, open time.html and you will see the html page refreshes it’s time every 10 seconds.

Ref: http://www.openhosting.co.uk/articles/webdev/6004/

Comments (1)

Next Page » Next Page » Next »

Sponsored Links Lab Supply Mall http://www.labsupplymall.com

Protein expression & purification: E. Coli, insect and mammalian cells
Fast turn around, 3 mg of >95% purity functional protein. No outsourcing to China or India. $2500, $1800
GeneExpresso DNA Transfection Reagent
Low Cytotoxicity, Higher Transfection Efficiency than Lipofectamine 2000. $188, $138
Functional Recombinant Proteins by in vitro Protein Synthesis, 3 days, 95% Purity
Full-length, high quality protein, high yield, high throughput, any genes (toxic, low GC content), membrane proteins, isotopic labelling. $598, $398