Contact: aviboots(AT)netvision.net.il
39,988 questions
51,933 answers
573 users
<!DOCTYPE html> <html> <body> <button type="button" onclick="document.write(1 + 9)">Run</button> </body> </html> /* run: 10 */
// JavaScript function writeInHTML(s) { document.write(s); } /* run: Your Text... */
// PHP echo "<script> writeInHTML('Your Text...'); </script>";
<!DOCTYPE html> <html> <body> <script type="text/javascript"> document.write(1 + 10); </script> </body> </html> <!-- run: 10 -->
<!DOCTYPE html> <html> <body> <script type="text/javascript"> document.write("Your Text..."); </script> </body> </html> <!-- run: 10 -->