Javascript probleem met PHP
Code (php)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<html>
<head>
<title>Disney foto's</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="Javascript" type="text/javascript">
function create_http_object()
{
var ActiveXTypes = [
"Microsoft.XMLHTTP",
"MSXML2.XMLHTTP.5.0",
"MSXML2.XMLHTTP.4.0",
"MSXML2.XMLHTTP.3.0",
"MSXML2.XMLHTTP"
];
for( var i = 0; i < ActiveXTypes.length; i++ )
{
try
{
return new ActiveXObject( ActiveXTypes[i] );
}
catch( e )
{ }
}
try
{
return new XMLHttpRequest();
}
catch( e )
{ }
return false;
}
function make_request(url, callback_function, http_method, post_values, return_xml)
{
http = create_http_object();
if(!http)
{
alert('Je browser ondersteunt deze feature niet.');
return false;
}
http.onreadystatechange = function()
{
if(http.readyState == 4)
{
if(http.status == 200)
{
if(callback_function)
{
if(return_xml)
{
eval(callback_function + '(http.responseXML)');
}
else
{
eval(callback_function + '(http.responseText)');
}
}
}
else
{
alert('Error! (' + http.status + ')');
}
}
}
if(!post_values)
{
post_values = null;
}
if(!http_method)
{
http_method = "GET";
}
http.open(http_method, url, true);
if(http_method == "POST")
{
http.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
}
http.send(post_values);
}
function handle_response(result)
{
// Terug krijgen van de info uit externe file en dan in de DIV gooien om te gebruiken
document.getElementById('result_div').innerHTML = result;
//result_code = result;
}
function haaltFotoNaamOp()
{
// We gaan de post variablen string maken ^^
var Formulier = document.getElementById('myForm');
var fotoNaam = '';
fotoNaam = 'name=' + Formulier.thumb.src;
//post_string += '&message=' + the_form.message.value;
make_request('getFoto.php', 'handle_response', 'POST', fotoNaam);
}
</script>
</head>
<?php
$dir = 'fotos/';
$thumbs = 'thumbs/';
$handle = opendir($thumbs);
while ($file = readdir($handle))
{
if($file == '.' || $file == '..' || $file == 'Thumbs.db')
continue;
else
$result_array[]=$file;
}
closedir($handle);
$aantal = count($result_array);
array_multisort($result_array, SORT_DESC);
print "<form id='myForm'>";
//for ($i = $aantal-1; $i >= 0; $i--)
//{
print "<img src='$thumbs/$result_array[1]' onclick='haaltFotoNaamOp();' name='thumb'>";
//print "<img src='$thumbs/$result_array[0]' onclick='haaltFotoNaamOp();' name='thumb2'>";
//}
print "</form>";
?>
<div id="result_div"></div>
<head>
<title>Disney foto's</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="Javascript" type="text/javascript">
function create_http_object()
{
var ActiveXTypes = [
"Microsoft.XMLHTTP",
"MSXML2.XMLHTTP.5.0",
"MSXML2.XMLHTTP.4.0",
"MSXML2.XMLHTTP.3.0",
"MSXML2.XMLHTTP"
];
for( var i = 0; i < ActiveXTypes.length; i++ )
{
try
{
return new ActiveXObject( ActiveXTypes[i] );
}
catch( e )
{ }
}
try
{
return new XMLHttpRequest();
}
catch( e )
{ }
return false;
}
function make_request(url, callback_function, http_method, post_values, return_xml)
{
http = create_http_object();
if(!http)
{
alert('Je browser ondersteunt deze feature niet.');
return false;
}
http.onreadystatechange = function()
{
if(http.readyState == 4)
{
if(http.status == 200)
{
if(callback_function)
{
if(return_xml)
{
eval(callback_function + '(http.responseXML)');
}
else
{
eval(callback_function + '(http.responseText)');
}
}
}
else
{
alert('Error! (' + http.status + ')');
}
}
}
if(!post_values)
{
post_values = null;
}
if(!http_method)
{
http_method = "GET";
}
http.open(http_method, url, true);
if(http_method == "POST")
{
http.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
}
http.send(post_values);
}
function handle_response(result)
{
// Terug krijgen van de info uit externe file en dan in de DIV gooien om te gebruiken
document.getElementById('result_div').innerHTML = result;
//result_code = result;
}
function haaltFotoNaamOp()
{
// We gaan de post variablen string maken ^^
var Formulier = document.getElementById('myForm');
var fotoNaam = '';
fotoNaam = 'name=' + Formulier.thumb.src;
//post_string += '&message=' + the_form.message.value;
make_request('getFoto.php', 'handle_response', 'POST', fotoNaam);
}
</script>
</head>
<?php
$dir = 'fotos/';
$thumbs = 'thumbs/';
$handle = opendir($thumbs);
while ($file = readdir($handle))
{
if($file == '.' || $file == '..' || $file == 'Thumbs.db')
continue;
else
$result_array[]=$file;
}
closedir($handle);
$aantal = count($result_array);
array_multisort($result_array, SORT_DESC);
print "<form id='myForm'>";
//for ($i = $aantal-1; $i >= 0; $i--)
//{
print "<img src='$thumbs/$result_array[1]' onclick='haaltFotoNaamOp();' name='thumb'>";
//print "<img src='$thumbs/$result_array[0]' onclick='haaltFotoNaamOp();' name='thumb2'>";
//}
print "</form>";
?>
<div id="result_div"></div>
Hele hap code maar wat het probleem is, is dat wanneer ik de onclick met een name in mijn for lus hang dan returned hij niet het volledige pad. Is er een mogelijkheid om een andere functie in java script te gebruiken om toch de name tag te gebruiken? ik hoop dat het duidelijk is. Waar mijn probleem zit staat in commentaar.
Greetz
Er zijn nog geen reacties op dit bericht.