php script displays nothing in browser, inspect elements shows <!--?php echo 'Some text'; ?--> -


php script displays nothing in browser, inspect elements shows <!--?php echo 'text here can't see'; ?-->

this code:

    <html> <head>     <title>something</title> </head> <body>     <h1>something texttexttext</h1>              <?php     echo 'text here can't see';            ?>  </body> </html> 

when open in browser, get-"something texttexttext" , not "text here can't see".

for 1 thing, echo statement closes prematurely ' in can't. try:

    <html> <head>     <title>something</title> </head> <body>     <h1>something texttexttext</h1>              <?php     echo "text here can't see";            ?>  </body> </html> 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -