Posts Tagged 'URL&'

Nov

26

How to redirect URL with Javascript

Posted by admin under internet, technology - No Comments

——————————————1.—————————————-
<script language=”javascript” type=”text/javascript”>
window.location.href=”login.php?backurl=”+window.location.href;
</script>
——————————————2.—————————————-
<script language=”javascript”>
alert(”back”);
window.history.back(-1);
</script>
——————————————3.—————————————-
<script language=”javascript”>
window.navigate(”tmtbox.php”);
</script>
——————————————4.—————————————-
<script language=”JavaScript”>
self.location=”tmtbox.htm”;
</script>
——————————————5.—————————————
<script language=”javascript”>
alert(”Access Violation”);
top.location=”error.php”;
</script>

Nov

15

Search Engine-Friendly URLs – PHP & MySQL Tutorials

Posted by admin under technology - No Comments

On today’s Internet, database driven or dynamic sites are very popular. Unfortunately the easiest way to pass information between your pages is with a query string. In case you don’t know what a query string is, it’s a string of information tacked onto the end of a URL after a question mark.

Read more:Search Engine-Friendly URLs [PHP & MySQL Tutorials]