PDA

View Full Version : alert system



Laprico
26-11-2006, 04:20 PM
Does anyone know how to set up an alert system or link

(Aka like clubhabbo <-- EXAMPLE ;L)

Drompo
26-11-2006, 04:24 PM
Its a Definded Javascript
I think, Deffiantly Java anyway

Jae
26-11-2006, 04:30 PM
AKA ClubHabbo ?

So the script is Also Known As ClubHabbo ?

Laprico
26-11-2006, 04:31 PM
AKA ClubHabbo

Si the script is Also Known As ClubHabbo ?

No thats an example they have it,

nets
26-11-2006, 05:25 PM
What's an alert system? If you explain what it is, I'll write you a script for it..

Lilian
26-11-2006, 05:45 PM
Its were you get to send an alert via webbpage and then it appears on your site.

Laprico
26-11-2006, 08:53 PM
does anyone know the script or a url to help me out then

Jae
26-11-2006, 09:02 PM
No thats an example they have it,

AKA is not a example, AKA is also known as...

Laprico
26-11-2006, 09:03 PM
Ok jae I don't really care no more.

San$
26-11-2006, 09:21 PM
If your doing it via IP Alert just do


<?
$_SERVER[REMOTE_ADDR];
if ($ip == "99.99.99,99) { echo" alert("lol"); } else { } ?>

Heinous
26-11-2006, 11:15 PM
If your doing it via IP Alert just do


<?
$_SERVER[REMOTE_ADDR];
if ($ip == "99.99.99,99) { echo" alert("lol"); } else { } ?>
Hm, wrong. Way wrong.


<?php
$ip = $_SERVER['REMOTE_ADDR'];
if ($ip == "x.x.x.x")
{
echo "<script type=\"text/javascript\">
<!--
alert(\"message\");
//-->
</script>
";
}
?>

Want to hide these adverts? Register an account for free!