i mean , i have a page page.php and i have <?php kadfsdkfsdkfbdf jkbdsfjb ?> inside , when i go http://localhost/.../page.php i get its source and i see <?php
"the code" ?> ,weird man, i mean i have done a lot of other php pages and all show only the html script in source man; if u are interested here is the code :
just try it on yout local machine and tell me what happens ok ?
"the code" ?> ,weird man, i mean i have done a lot of other php pages and all show only the html script in source man; if u are interested here is the code :
Code:
<?php //// i see the tags !!!!!!!!!!!!!!!!!!!!!!!!!!!!! in source man
?>
<form method="post" action="procesare.php" name="formular1">
<input type=text name="text">
<br>
<input type="checkbox" name="bifat">
<br>
<select name="selectie">
<?php
for ($i=0;$i<=99;$i++){ //
if (($i % 2) == 0 ){
echo "<option >" . $i . "</option>";
}
}
echo "<BR><BR>asdasdfsaf";
?>
</select>
<input type="submit" value="Trimite">
</form>
Comment