Thread: PHP help!
View Single Post
  #3  
Old 07-26-2005, 05:02 PM
vee_ess's Avatar
vee_ess vee_ess is offline
Super Moderator
 
Join Date: Aug 2001
Location: Phoenix, Arizona
Posts: 2,781
Send a message via ICQ to vee_ess Send a message via AIM to vee_ess Send a message via MSN to vee_ess Send a message via Yahoo to vee_ess
Default

The syntax is like the following:
Code:
<?php

command;

?>
It should be embedded in an html file that will be processed server-side, so as part of the file it should look like this:
Code:
<html>
   <body>
      <?php
          command;
          command;
          command;
      ?>
   </body>
</html>
Operators, conditional statements, and loops can be written as they are in Java or C++.
__________________

It's not a car, it's an addiction.
The only carb that matters is under the hood.
There's an option for most vehicles that increases brake horsepower, increases mileage, increases driver control, lasts longer than the alternative, and even reduces the price of the vehicle. Despite all this, most people in this country choose the alternative, an automatic transmission.

Reply With Quote