Difference between revisions of "PHP"

From CSEE Documentation
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
==CSEE Personal Web Site==
 +
Set up your [[Web Introduction|Personal Web Site]] if you have not done so already.
 +
 
==Using PHP in HTML documents (recommended)==
 
==Using PHP in HTML documents (recommended)==
 
# Create a PHP-enabled HTML file (make sure it has a .php extension), e.g. ~username/www/filename.php)
 
# Create a PHP-enabled HTML file (make sure it has a .php extension), e.g. ~username/www/filename.php)
 
# Insert PHP statements anywhere in your file. Start each block of statements with <code><?php</code> and end it with <code>?></code> For example, to print a simple "Hello world!":<br/><code><nowiki><?php echo '<p>Hello world!</p>'; ?></nowiki></code>
 
# Insert PHP statements anywhere in your file. Start each block of statements with <code><?php</code> and end it with <code>?></code> For example, to print a simple "Hello world!":<br/><code><nowiki><?php echo '<p>Hello world!</p>'; ?></nowiki></code>
# Make sure you set permissions properly on your script:<br/><code>chmod 755 ~username/www/filename.php</code>
+
# Make sure you set permissions properly on your script:<br/><code>chmod 705 ~username/www/filename.php</code>
 
# Load the page with your favorite Web Browser to ensure that it works.
 
# Load the page with your favorite Web Browser to ensure that it works.
  
Line 9: Line 12:
 
# Using PHP on CSEE web servers is the same as using any other CGI langauge such as Perl. Review the instructions at the [[CGI|CSEE CGI Guide]] to become familiar with using CGI.
 
# Using PHP on CSEE web servers is the same as using any other CGI langauge such as Perl. Review the instructions at the [[CGI|CSEE CGI Guide]] to become familiar with using CGI.
 
# Create your PHP file (make sure it has a .cgi extension), e.g. ~username/www/filename.cgi)
 
# Create your PHP file (make sure it has a .cgi extension), e.g. ~username/www/filename.cgi)
# The first line of that file should read:<br/><code>#!/usr/site/bin/php</code>
+
# The first line of that file should read:<br/><code>#!/usr/bin/php</code>
 
# Write your PHP script. See the example above.
 
# Write your PHP script. See the example above.
 
# Make sure you set permissions properly on your script:<br/><code>chmod 705 ~username/www/filename.cgi</code>
 
# Make sure you set permissions properly on your script:<br/><code>chmod 705 ~username/www/filename.cgi</code>

Latest revision as of 16:12, 6 August 2019

CSEE Personal Web Site

Set up your Personal Web Site if you have not done so already.

Using PHP in HTML documents (recommended)

  1. Create a PHP-enabled HTML file (make sure it has a .php extension), e.g. ~username/www/filename.php)
  2. Insert PHP statements anywhere in your file. Start each block of statements with <?php and end it with ?> For example, to print a simple "Hello world!":
    <?php echo '<p>Hello world!</p>'; ?>
  3. Make sure you set permissions properly on your script:
    chmod 705 ~username/www/filename.php
  4. Load the page with your favorite Web Browser to ensure that it works.

Using PHP in CGI scripts

  1. Using PHP on CSEE web servers is the same as using any other CGI langauge such as Perl. Review the instructions at the CSEE CGI Guide to become familiar with using CGI.
  2. Create your PHP file (make sure it has a .cgi extension), e.g. ~username/www/filename.cgi)
  3. The first line of that file should read:
    #!/usr/bin/php
  4. Write your PHP script. See the example above.
  5. Make sure you set permissions properly on your script:
    chmod 705 ~username/www/filename.cgi
  6. Load the page with your favorite Web Browser to ensure that it works.

Documentation