free web site traffic and promotion

Welcome to Dynamic Software's Zone

Software Zone Provide you Quality Software's Free of Cost with full version Keep Visiting and Keep enjoying . . . Don't Forget To Comment on Posts.

Dynamic Software's Zone Features

Dynamic Software's Zone provide you cracked,registered, serial key, and much more for free

Dynamic Software's Zone Update Daily

Our Team Update Blog Daily Or Twice A Day With latest and Cool Stuff For You For Free Download . . .

Dynamic Software's Zone Give You Big Variety Of Software's

Dynamic Software's Zone Provide You Latest and registered software's. . .

Dynamic Software's Zone

A Solution Of Your Needs

Showing posts with label Web Development. Show all posts
Showing posts with label Web Development. Show all posts

Thursday, 5 July 2012

"What is my ip?" Page source in PHP...the basics

Here is the basic's to making your own IP Chicken type page for users to retrieve their ip addy..

Copy Code!
____________________________________________________________
<?php       echo ' <p> Your IP address is '.$_SERVER['REMOTE_ADDR'].' </p>';   echo ' <p> Your hostname (if any) is '.gethostbyaddr($_SERVER['REMOTE_ADDR']).' </p>'; ?>
 ______________________________________________________________

I-frame PHP into html example...

Here's a quick example on how to i-frame a PHP snippet or page into your html page

Copy Code |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
<html> <head> <head> <body> <Iframe src="yourpage.php" width="300" height="600"></Iframe> </body> </html>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

Play Sound on Mouseover (IE)

Here's a short example of how to play a sound wav on mouseover in an html page...
Unfortunately, this only seems to work in Internet Explorer (I prefer Firefox myself).
But here's the code...

Copy Code|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
<html> <head> </head> <body> <embed name="sound" src="yoursound.wav" loop="false" autostart="false" hidden="true"> <a href="http://www.yourwebsite.com" onmouseover="javascript:self.document.sound.play();" onmouseout="javascript:self.document.sound.stop();">Mouseover For Sound</a> </body> </html>
 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

How to make a Pop-Up window

Quick Java Script on how to make an html popup insert...
Copy Code|
""""""""""""""""""""""""""""""""""""""""""""""""""""
<script type="text/javascript"> function daPopUp(url) {    popupWindow = window.open(       url,'popUpWindow','height=600,width=800,left=20,top=20,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes') } </script> <a href="JavaScript:daPopUp('http://www.yoursite.com');">Open Your Site in a Pop-Up</a>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""