Jump to content
php.lv forumi

Recommended Posts

Posted (edited)

Sveiki, man ir skriptiņš, kurš pārmet uz lapu

 

<script LANGUAGE='JavaScript'>

window.location='$targetpage';

</script>

$targetpage būtu vieta kurā ieliktu linu, kurš ir pievienots lapai

Piemēram:

Http://www.lapa.lv/?targetpage=http://www....amp;UYUIUH96668

Kā noparsēt linku, lai otro daļu iemet $targetpage?

 

Un būtu labi ja to JS parādītu lapā tikai tad, ja ir norādīts ?targetpage, ja nava, tad tas nemaz nerādās ...

 

rezultātā, ja lietotājs nāk uz lapu un norāda ?targetpage tiek automātiki pārmests ar js uz ?targetpage! Lielas man problēmas to ielikt ira ... nesanāk nekādi, vai lūdzu kāds varētu palīdzēt? :)

Edited by Aleksejs
Posted (edited)
if (!empty($xxx))
  header("Location: $xxx");

Atvaino, bet vai varētu mazliet detalizētāku examplīti iemes? Kad piesiets JS un citas lietas ...

Edited by saintdevi
Posted

Nezinu, vai līdz galam izpratu, ko vēlies, bet te mans minējums:

<?php
if(array_key_exists('targetpage',$_GET){
$trg = validate_input_so_that_this_input_is_ok($_GET['targetpage']);
echo "<html>
<head>
<title>Pārsūtīšana uz $trg</title>
</head>
<body>
<script>window.location='$trg';</script>
</body>
</html>";
}
else {
//Kas jādara, ja nav padots targetpage?
}

Posted

Nu, tad:

<?php
if(array_key_exists('targetpage',$_GET){
$trg = validate_input_so_that_this_input_is_ok($_GET['targetpage']);
echo "<html>
<head>
<title>Pārsūtīšana uz $trg</title>
</head>
<body>
<script>window.location='$trg';</script>
</body>
</html>";
die();
}

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.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...