mikael_aMedlem sedan mars 2000475 inlägg hej,
jag skickar med följande data i en url:
echo "\<a href=\\"main.php?screenWidth=".screen.width. "&screenHeight=".screen.height. "&year=".$year."\\"\>Ej Helskärm\</A\>\<br\>\<br\>";
men screen.width + screen.height skickas inte med...
sedan försöker jag i en javascripts function skicka följande värde:
echo "<a href=\"javascript:fullScreen('main.php?screenWidth='+screen.width+'&screenHeight='+screen.height+'&year='$year');\">Helskärm</A><br><br>";
då för jag följande fel: ')' behövs...
hatar dessa ' . osv :)
bgustMedlem sedan mars 2000136 inlägg Är screen.width och screen.height variabler bör du klämma in $.
mikael_aMedlem sedan mars 2000475 inlägg screen.width är inbyggda i java och kollar av bredden... behövs $ då?
Kent.JMedlem sedan aug. 2001153 inlägg Detta kanske hjälper... copy paste från php.net
Om inte annat är det väl alltid bra o veta :)
-------------------------------
Since Javascript is (usually) a client-side technology, and PHP is (usually) a server-side technology, and since HTTP is a "stateless" protocol, the two languages cannot directly share variables.
It is, however, possible to pass variables between the two. One way of accomplishing this is to generate Javascript code with PHP, and have the browser refresh itself, passing specific variables back to the PHP script. The example below shows precisely how to do this -- it allows PHP code to capture screen
<?php
if (isset($_GET['width']) AND isset($_GET['height'])) {
// output the geometry variables
echo "Screen width is: ". $_GET['width'] ."<br />\n";
echo "Screen height is: ". $_GET['height'] ."<br />\n";
} else {
// pass the geometry variables
// (preserve the original query string
// -- post variables will need to handled differently)
echo "<script language=\"javascript\">\n";
echo " location.href=\"${_SERVER['SCRIPT_NAME']}?${_SERVER['QUERY_STRING']}"
. "&width=\" + screen.width + \"&height=\" + screen.height;\n";
echo "</script>\n";
exit();
}
?>