mirror [OPTS] [source [target]] Continue Reading
Posted on 28 April 2010.
mirror [OPTS] [source [target]] Continue Reading
Posted in Linux0 Comments
Tag?
Posted on 26 April 2010.
How can I disable <p> Tag?
force_br_newlines : true,
force_p_newlines : false,
forced_root_block : “”,
Posted in JavaScript - Ajax, Programming0 Comments
Posted on 22 April 2010.
Whois servers return information about ownership and location of Internet hostnames and IP numbers. Continue Reading
Posted in Programming0 Comments
Posted on 21 April 2010.
Posted in Plesk0 Comments
Posted on 20 April 2010.
http://www.webwasp.co.uk/tutorials/b28-array/index.php
http://www.actionscript.org/resources/articles/89/2/Arrays-in-ActionScript/Page2.html
http://www.flashvalley.com/fv_tutorials/arrays/
Posted in Flash0 Comments
Posted on 19 April 2010.
Here are some examples of how to utilize mysql_error ()
mysql_connect("your.hostaddress.com",
"username", "password") or die(mysql_error())
This will return an error if there is a problem connecting to your MySQL database
$value = mysql_query($your_query)
or die("A MySQL error has occurred.<br />Your Query: " .
$your_query . "<br /> Error:
(" . mysql_errno() . ") " . mysql_error())
When you encounter an error, this will return your custom message (A MySQL error has occurred.<br />) followed by a line number, and the actual
thanks http://php.about.com/od/phpwithmysql/f/mysql_error.htm
Posted in MySQL, PHP0 Comments
Posted on 13 April 2010.
switch (window.location.protocol)
{
case "http:":
include('http://www..js');
break;
case "https:":
include('https://ssl..js');
break;
default:
include('http://www..js');
break;
}
Posted in JavaScript - Ajax, Programming0 Comments
Posted on 13 April 2010.
First of all, you should know that SSL must be installed in the server. To redirect the browser to “https” , we must know that the site is using SSL or not at the moment. And for this, there is a server variable in PHP called “HTTPS”. $_SERVER['HTTPS'] returns “on” values when the site is using SSL connection. Continue Reading
Posted in PHP0 Comments
Posted on 09 April 2010.
Posted in MAC0 Comments
Posted on 08 April 2010.
<script type=”text/javascript”>
tinyMCE.init({
// General options
mode : “exact”,
theme : “advanced”,
elements : “textareaID”,
height: 500,
…………………
Posted in JavaScript - Ajax, Programming0 Comments
