Pop-Up nodig in php

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Thierry

Thierry

04/07/2007 16:03:00
Quote Anchor link
edit:
Probleem opgelost, popup op pagina waarna werd verwezen in php gezet.

Mijn probleem is als volgt,
ik heb op mijn site een aantal tracks staan die je opent vanaf tracks.html,
maar ik wil dat deze in een pop-up(zonder menu e.d.) worden geopend zodat ze door blijven gaan als je naar een andere pagina op mijn site gaat
nu opent hij zich in een hele nieuwe pagina doordat ik in de flash button naar tracks.html een _blank opdracht heb meegegeven

Tracks.html
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<link href="test.css" rel="stylesheet" type="text/css" />
</head>

<body bgcolor="#000000" text="gray">
<center><img src="../images/DSV Tracks.jpg" width="75%" height="183" /></center>
<table width="100%">
<tr>
<td width="20%" height="45" align="center"></td>
<td width="60%" align="center">
</td>
<td width="20%" align="center"></td>
</tr>
<tr>
<td width="20%" align="center"></td>
<td width="60%" align="center">
<form action="trackplay.php" method="post">
<select name="track">
<option>Please Select</option>
<option>TGBOI - Raprezent ft. Dan-E</option>
<option>TGBOI - Spit Die Shit (Snippet)</option>
<option>TGBOI Ft. Gimo - Fock Boulers</option>
<option>DSV - Lauwe Shit (Brinky,Gimo,TGBOI)</option>
<option>TGBOI - Ik Wil Voor Altijd Bij je Zijn</option>
<option>TGBOI Ft, Re-Flex - We Komen Zo Fresh</option>
<option>All</option>
</select>
<input type="submit" name="play" value="play"  class="but"/>
</form></td>
<td width="20%" align="center"></td>
</tr>

</table>
</body>
</html>


en trackplay.php

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?

$track
= $_REQUEST[track];

if ($track == 'Please Select')
{
print "<html>
<head>
<title>Fout</title>
<link href='test.css' rel='stylesheet' type='text/css' />
</head>

<body bgcolor='black' text='gray'>
<center>Please Select a track to listen</center>
<center><form>
<input type='button' value='Terug' onclick='history.back()' />
</form></center>
</body>
</html>
"
;}
else {
if ($track == 'TGBOI - Raprezent ft. Dan-E')
{
header ("location: track/1.html");}
elseif ($track == 'TGBOI - Spit Die Shit (Snippet)')
{
header( "location: track/2.html" );}
elseif ($track == 'TGBOI Ft. Gimo - Fock Boulers')
{
header( "location: track/3.html" );}
elseif ($track == 'DSV - Lauwe Shit (Brinky,Gimo,TGBOI)')
{
header( "location: track/4.html" );}
elseif ($track == 'TGBOI - Ik Wil Voor Altijd Bij je Zijn')
{
header( "location: track/5.html" );}
elseif ($track == 'TGBOI Ft, Re-Flex - We Komen Zo Fresh')
{
header( "location: track/6.html" );}
elseif ($track == 'All')
{
header( "location: track/all.html" );}
}

?>


ik hoop dat iemand het begrijpt :)

Alvast bedankt,
Thierry
Gewijzigd op 01/01/1970 01:00:00 door Thierry
 
PHP hulp

PHP hulp

05/12/2024 03:17:50
 
Leroy Boerefijn

Leroy Boerefijn

04/07/2007 16:49:00
Quote Anchor link
gewoon target="_blank" aan je url toevoegen?
zo niet.. dan snap ik de vraag niet :P
 
Danny Roelofs

Danny Roelofs

04/07/2007 17:32:00
Quote Anchor link
Nee niet echt, want je begint met je mogelijke vraag:

ik wil op heb op mijn site een aantal tracks staan die je opent


Wil je nu iets, of heb je nu iets op je site?
 
Thierry

Thierry

04/07/2007 18:25:00
Quote Anchor link
sorry typefout,
ik heb nu zoiets ;)
 
Yordi B

Yordi B

04/07/2007 18:49:00
Quote Anchor link
hoogte en breedte meegeven aan de popup wil je ?
 
Bart van der veen

bart van der veen

04/07/2007 18:55:00
Quote Anchor link
zoek ff javascript popup
 
Thierry

Thierry

04/07/2007 19:03:00
Quote Anchor link
de hoogte en breedte maakt niet uit(zolang maar kleiner dan normale scherm :P )
 
Sebastiaan

Sebastiaan

04/07/2007 19:25:00
Quote Anchor link
www.google.nl -> popup maker
:)
 
Thierry

Thierry

04/07/2007 19:35:00
Quote Anchor link
de pop-up makers op google zijn niet echt wat ik wil,
wat ik wil is dat in de php file word door gegeven dat die file in een popup moet verschijnen
aangezien er meerdere tracks instaan die worden gekozen door een select en vervolgens door het php script worden verwerkt
Gewijzigd op 01/01/1970 01:00:00 door Thierry
 
Reinhout

reinhout

04/07/2007 20:34:00
Quote Anchor link
Zoals bart zei: een javascript pop-up
Op sommige template-sites zie je een prieview in zo'n 'pup-ip' Ik denk dat je die info met php kan fetchen of zo
 
Thierry

Thierry

05/07/2007 07:30:00
Quote Anchor link
hmm,
hoe dan?
sorry ik ben pas net met php begonnen...
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.