Directory of Internet Whois Servers Whois servers return information about ownership and location of Internet hostnames and IP numbers.
Category Archives: Programming
Flash Arrays Tutorial
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/
MySQL errors into PHP?
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() . “) ” . …
Javascript SSL protocol Switch
switch (window.location.protocol) { case “http:”: include(‘http://www..js’); break; case “https:”: include(‘https://ssl..js’); break; default: include(‘http://www..js’); break; }
How to redirect browser to https (ssl) in php
How to redirect the browser to https when site is using http protocal in PHP? 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 …
Continue reading “How to redirect browser to https (ssl) in php”
Tinymce on selected AREA
<script type=”text/javascript”> tinyMCE.init({ // General options mode : “exact”, theme : “advanced”, elements : “textareaID”, height: 500, …………………