PHP
  Home arrow PHP arrow Page 3 - Installing PHP With IIS To Create A Discus...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Installing PHP With IIS To Create A Discussion Forum
By: Jayesh Jain
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 13
    2002-10-03

    Table of Contents:
  • Installing PHP With IIS To Create A Discussion Forum
  • Installing PHP
  • Creating The Access Database
  • Testing Our Forum
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Installing PHP With IIS To Create A Discussion Forum - Creating The Access Database


    (Page 3 of 5 )

    Create a Microsoft Access database called forum with the following table structure:



    The field called code is a unique, autonumber field, which will identify each thread in the discussion forum. Parentcode will represent the ID of the parent thread for the current thread (if any), and will be 0 for all new threads.

    Title, description, uname and email fields are used to save more information on each thread. This structure gives us the flexibility to create a tree structure of thread and child threads, which can span n levels deep.

    To create a DSN for this database, click Start -> Settings -> Control Panel -> Administrative Tools and double click on the Data Sources (ODBC) icon:



    Click the system DSN tab then click add. Select the Microsoft Access driver (*.mdb), enter "forum" as the data source name and select the database you have just created as the database. Click Ok to create this DSN.

    Your database must not be open in Access when you try and create the DSN or you will receive an error.



    Creating The PHP Files
    We need to create two PHP files (forum.php and node.php) to make our discussion forum work. Save the files shown below into your C:\INETPUB\WWWROOT folder.

    Here's the code for first PHP file (forum.php):

    <?
    // This is the DSN we have create for our database
    $connect = odbc_connect("forum", "root", "");
    ?>
    <HTML>
    <BODY>
    Discussion Forum using PHP/Access under IIS<BR><BR>
    <A HREF='node.php?node=0'>Post New Message</A>
    <?

    shownode(0); // display all the main threads

    // This function is a recursive function which shall display all the branches
    // and sub branches of the threads
    function shownode($nodecode)
    {
    global $connect; // using the global variable for connection
    // Get a list of all the sub nodes which specific parentcode
    $noderesult = odbc_exec($connect,"select * from forum where parentcode = $nodecode");
    echo "<UL type='disc'>";
    while(odbc_fetch_row($noderesult)) // get all the rows
    {
    $code = odbc_result($noderesult,"code");
    $title = odbc_result($noderesult,"title");
    $uname = odbc_result($noderesult,"uname");
    $email = odbc_result($noderesult,"email");
    echo "<LI>";
    echo "<A HREF='node.php?node=$code'> $title </A>";
    echo "-- by ($uname) $email<BR>";
    shownode($code);
    }
    echo "</UL>";
    }
    ?>
    </BODY>
    </HTML>


    Here's the code for the second PHP file (node.php) file:

    <?
    $connect = odbc_connect("forum", "root", "");
    if(isset($submit)) // check if submitted button is clicked
    {
    // insert the record in the database
    $resultupdate=odbc_exec($connect,"insert into forum
    (parentcode,title,description,uname,email) VALUES
    ($node,'$title','$description','$postname','$email')");
    header("location:forum.php"); // open forum.php file to display the thread
    exit;
    }
    ?>
    <CENTER>Post to Discussion Forum using PHP/Access under IIS</CENTER>
    <?
    if ( $node != 0 )
    {
    // Displaying the details of the thread
    echo "<HR>";
    $noderesult = odbc_exec($connect,"select * from forum where code = $node");
    $noderow=odbc_fetch_row($noderesult);
    $title = odbc_result($noderesult,"title");
    $description = odbc_result($noderesult,"description");
    $uname = odbc_result($noderesult,"uname");
    $email = odbc_result($noderesult,"email");
    echo "$title by ($uname) $email<BR>";
    echo "$description <BR><HR>";
    }
    ?>
    <!-- Form to enter the message -->
    <FORM method='post'">
    Name : <INPUT TYPE=TEXT NAME=postname> <BR>
    E-Mail : <INPUT TYPE=TEXT NAME=email> <BR>
    Title : <INPUT TYPE=TEXT NAME=title VALUE = '' size=50> <BR>
    Description : <BR> <TEXTAREA name=description rows=10 cols=45></TEXTAREA>
    <!-- we need a hidden field to store the node -->
    <INPUT TYPE=hidden NAME=node value='<? echo $node;?>'> <BR>
    <INPUT type=submit name=submit value='Post Message'>
    </FORM>

    More PHP Articles
    More By Jayesh Jain


     

    PHP ARTICLES

    - Making Usage Statistics in PHP
    - Installing PHP under Windows: Further Config...
    - File Version Management in PHP
    - Statistical View of Data in a Clustered Bar ...
    - Creating a Multi-File Upload Script in PHP
    - Executing Microsoft SQL Server Stored Proced...
    - Code 10x More Efficiently Using Data Access ...
    - A Few Tips for Speeding Up PHP Code
    - The Modular Web Page
    - Quick E-Commerce with PHP and PayPal
    - Regression Testing With JMeter
    - Building an Iterator with PHP
    - PHP Frontend to ImageMagick
    - Using PEAR's mimeDecode Module
    - Incoming Mail and PHP







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek