Jump to content

n00b question


Zaratul

Recommended Posts

n00b Question, I am folling a tutoral at phpbuilder.com and came accross this part where it wants me to make a DB in Microsoft access but i dont have it I have MySQL and was wondering if anyone could give me the SQL for making a database that will be the equivelant to the one shown. The DB name the want is forum ( i think ), thanks for all the help!!

oops forgot the link http://www.phpbuilder.com/columns/jayesh20...029.php3?page=4

Link to comment
Share on other sites

CREATE DATABASE your_db;

 

CREATE TABLE `yourtable` ( `code` INT(9) NOT NULL AUTO_INCREMENT, `parentcode` INT(9) NULL , `title` VARCHAR(30) NULL , `description` VARCHAR(30) NULL , `uname` VARCHAR(30) NULL , `email` VARCHAR(30) NULL , UNIQUE ( `code` ) );

Link to comment
Share on other sites

thanks for the help but i am getting this error now. any ideas?

 

 

Discussion Forum using PHP/Access under IIS

 

Post New Message

Warning: SQL error: [MySQL][ODBC 3.51 Driver][mysqld-4.0.12-nt]Unknown column \'parentcode\' in \'where clause\', SQL state S0022 in SQLExecDirect in d:inetpubwwwrootforum.php on line 19

 

 

Warning: odbc_fetch_row(): supplied argument is not a valid ODBC result resource in d:inetpubwwwrootforum.php on line 21

Link to comment
Share on other sites

this is more then that but it starts at line 10 and goes till then end of the function. thanks again

 

 

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

 

// This function is a recursive function which shall display all the br /anches

// and sub br /anches 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>\";

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.