Jump to content

Recommended Posts

No.. well not on the clients computer.. PHP is server based

your need a client side script like Javascript

 

EDIT:

detect QuickTime (untested)

<script language="Javascript">
<! — hide from pre-script browsers
     var haveqt = false;
// — >
</script>

<script language="VBScript">
<! — hide from pre-script browsers
On Error Resume Next
Set theObject = CreateObject("QuickTimeCheckObject.QuickTimeCheck.1")
On Error goto 0

If IsObject(theObject) Then
     If theObject.IsQuickTimeAvailable(0) Then ‘Just check for file
          haveqt = true
     End If
End If
// — >
</script>

<script language="Javascript">
<! — hide from pre-script browsers
     if (navigator.plugins) {
          for (i=0; i < navigator.plugins.length; i++ ) {
               if (navigator.plugins[i].name.indexOf("QuickTime") >= 0)
                    { haveqt = true; }
            }
        }
// — >
</script>
</head>

<body bgcolor="#ffffff">
<H1>Check for QuickTime</H1>

<script language="Javascript">
<! — hide from pre-script browsers
    if (haveqt)
    {document.write(’<embed src="hotfire.mov" width=120 height=51>’);}
    else
    {document.write(’You do not seem to have " +
    "<a href="http://www.apple.com/quicktime">QuickTime</a>’);}
// — >
</script>

<noscript>
Your browser doesn’t support scripting, so you can’t check for QuickTime.
</noscript>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.