Joe de Frenky Posted May 8, 2003 Report Share Posted May 8, 2003 Help Kā lai piešķir PHP variablim Javascript variabli, jeb kā lai uztaisa normālu linku ieliekot tur javascripta variabli <?php echo("<A HREF="php2.php?darbiba=<script>document.write(wid);</script>"); echo("">"); echo("Atpakaļ</A>"); ?> Nu nerealizējas tas skripts, un loģiski, jo viņš taču ir iekavās pie href="", bet nezinu ko lai iesāk... Un tajā php2.php man vienkārši vajag dabūt to wid vērtību... Paldiesiņ... Link to comment Share on other sites More sharing options...
Venom Posted May 8, 2003 Report Share Posted May 8, 2003 Kāpēc uzreiz echo no PHP - browseris var nepaspēt noevaluēt noechotā skripta vērtību. Labāk echot ar skriptu: <script> document.write('<a href=some.php?wid="',wid,'">links</a>'); </script> Link to comment Share on other sites More sharing options...
K|NG Posted May 8, 2003 Report Share Posted May 8, 2003 šitāda tipa neder? <code><font color="#000000"> <font color="#0000CC"><? $wid </font><font color="#006600">= </font><font color="#CC0000">'es esmu tas wid'</font><font color="#006600">; switch (</font><font color="#0000CC">$darbiba</font><font color="#006600">){ case </font><font color="#CC0000">'wid'</font><font color="#006600">:{ echo </font><font color="#CC0000">"<script>document.write('$wid');</script>"</font><font color="#006600">; break; } default:{ echo </font><font color="#CC0000">"<a href='"</font><font color="#006600">,</font><font color="#0000CC">$_SERVER</font><font color="#006600">[</font><font color="#CC0000">'PHP_SELF'</font><font color="#006600">],</font><font color="#CC0000">"?darbiba=wid'>WID</a>"</font><font color="#006600">; }} </font><font color="#0000CC">?> </font> </font> </code> Link to comment Share on other sites More sharing options...
Joe de Frenky Posted May 9, 2003 Author Report Share Posted May 9, 2003 Paldies viss strādā! Vienīgais variants kā pielāgot CSS pozicionēšanu daudzmaz visiem browseriem ir checkot usera screenu un tad chakareeties! Tāds jau ir webista liktenis, ka nevar nokompilēt exiiti un rullēt kur un kad gribas.. Link to comment Share on other sites More sharing options...
Recommended Posts