This demo currently supports
Internet Explorer 6.0+
and
Mozilla Firefox 1.5+
.
include "file.php"; require "file2.php"; require_once "file3.php"; var $arrayVar = array(1, 7, "string"); $num = 23; function funcName($string) { if ($string == "error") { $query = mysql_query("SELECT * FROM tableName1") or die(mysql_error()); while ($row = mysql_fetch_assoc($query)) { $text = implode(",", $row); $toArray = explode(",", $text); } } elseif ($string == "root") { // comment echo "In browser"; } return false; }