I have installed PHP on a Windows IIS (ISAPI) version and I'm running into some problems. This is the first time i've personally installed PHP so I may have forgotten some things that I'm used to having.
To start off, I'll tell you what IS installed:
PHP 5.1.6
Collection of PECL modules for PHP 5.1.6
Zend Optimizer 3.0
MySQL 5.0
Now, there are 2 things I've noticed not working right:
1. for some reason this code doesn't work:
but this does:
(I've checked to make sure that a value is being passed into the $row variable from the SQL query)
2. Whenever I'm missing a ";" or haven't closed a }, I'm used to getting an error message (such as unexpected T_Variable blah blah on line 89), but I don't get those.
Am I missing some vital plugins or dlls for this installation that most people can't live without?
To start off, I'll tell you what IS installed:
PHP 5.1.6
Collection of PECL modules for PHP 5.1.6
Zend Optimizer 3.0
MySQL 5.0
Now, there are 2 things I've noticed not working right:
1. for some reason this code doesn't work:
Code:
<?php
if($row_sqlquery['field'] != ""){
echo "Field not blank";
} ?>
Code:
<?php
echo $row_sqlquery['field'];
} ?>
2. Whenever I'm missing a ";" or haven't closed a }, I'm used to getting an error message (such as unexpected T_Variable blah blah on line 89), but I don't get those.
Am I missing some vital plugins or dlls for this installation that most people can't live without?