phpgamedev-cvs-commits Mailing List for PHPGameDev (Page 2)
Status: Planning
Brought to you by:
sphen001
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(44) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Nick <sph...@us...> - 2005-06-09 01:30:32
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19651 Added Files: style.css Log Message: Initial commit of stylesheet. --- NEW FILE: style.css --- /* BODY */ body { scrollbar-face-color: #DEE3E7; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #D1D7DC; scrollbar-arrow-color: #006699; scrollbar-track-color: #EFEFEF; scrollbar-darkshadow-color: #98AAB1; margin: 0px; border: 0px; padding: 0px; background-color: white; font-family: Verdana, Helvetica, sans-serif; } .nav { margin: 0px; color: black; font-size: 70%; font-weight: bold; } .titles { color: black; font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 130%; text-decoration: none; } /* TABLE */ th { height: 28px; color: #FFA34F; font-size: 70%; font-weight: bold; background-color: #006699; background-image: url('./images/cellpic3.gif'); white-space: nowrap; padding-left: 5px; padding-right: 5px; } .tablebg { background-color: #A9B8C2; } .row1 { background-color: #ECECEC; padding: 4px; } .row2 { background-color: #DCE1E5; padding: 4px; } /* LINKS */ a:link { color: #005784; text-decoration: none; } a:visited { color: #005784; text-decoration: none; } a:hover { color: #D46400; text-decoration: underline; } /* PHP */ .php_comment { color: #FF8000; } .php_default { color: #0000BB; } .php_keyword { color: #007700; } .php_string { color: #DD0000; } |
|
From: Nick <sph...@us...> - 2005-06-09 01:28:02
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17853 Added Files: db_readme.html Log Message: Initial commit of readme file. --- NEW FILE: db_readme.html --- <!-- $Id: db_readme.html,v 1.1 2005/06/09 01:27:37 sphen001 Exp $ --> <html> <head> <title>PHPGameDev DB Abstraction Layer</title> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <p class="titles" align="center">PHPGameDev DB Abstraction Layer Readme</p> <center><a href="http://phpgamedev.sourceforge.net/index.html">Back to Index</a></center> <br /> <table class="tablebg" width="90%" align="center" border="0" cellspacing="1" cellpadding="1"> <tr> <th colspan="2"> Feature List </th> </tr> <tr> <td class="nav" colspan="2" align="center"> Features of the PHPGameDev DB Abstraction Layer </td> </tr> <tr> <td class="row1" width="25%"> DB Layer Definition: </td> <td class="row2"> All of the DB layers support a type definition. You can use this definition to switch between code for different DBMS's. <br /><br /> For example, if you had a query that would not run in Oracle, you could use a switch to switch what code you use. <br /><br /> <pre> <span class="php_comment">// We have a query that will run on every DBMS except Oracle</span> <span class="php_keyword">switch</span> ( <span class="php_default">DB</span> ) { <span class="php_keyword">case</span> <span class="php_string">'MySQL'</span> : <span class="php_keyword">case</span> <span class="php_string">'MSSQL'</span> : <span class="php_default">$sql</span> = <span class="php_string">'Regular SQL code here'</span>; <span class="php_keyword">break</span>; <span class="php_keyword">case</span> <span class="php_string">'Oracle'</span> : <span class="php_default">$sql</span> = <span class="php_string">'Oracle specific SQL code here'</span>; <span class="php_keyword">break</span>; } </pre> </td> </tr> <tr> <td class="row1" width="25%"> Connection Type: </td> <td class="row2"> Supports both normal and persistent connections. </td> </tr> </table> <br /> <table class="tablebg" width="90%" align="center" border="0" cellspacing="1" cellpadding="1"> <tr> <th colspan="2"> Function Reference </th> </tr> <tr> <td class="nav" colspan="2" align="center"> Here we'll define all the functions and explain what they are used for. </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />connect($db_host, $db_username, $db_password, $db, $persistent = FALSE) </td> <td class="row2"> This function connects to a DB. Only <b>$persistent</b> is not required. <br /><br /> <b>$db_host:</b> The hostname of the DB server you are connecting to. <br /> <b>$db_username:</b> The DB username you will be using. <br /> <b>$db_password:</b> The DB password you will be using. <br /> <b>$db:</b> The specific DB you will be accessing. <br /> <b>$persistent:</b> Open a persistent connection or not. Defaults to no. <br /><br /> Returns TRUE on success, and FALSE on failure. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_default">$db</span>-><span class="php_default">connect</span>(<span class="php_string">'localhost', 'root', '', 'some_db', FALSE)</span>; </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />disconnect() </td> <td class="row2"> This function disconnects from a DB. You do not specify any arguments. <br /><br /> Returns TRUE on success, and FALSE on failure. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_default">$db</span>-><span class="php_default">disconnect</span>(); </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />query($query) </td> <td class="row2"> This function executes a query on the DB. All arguments are required. <br /><br /> <b>$query:</b> The SQL query that is to be executed. <br /><br /> Returns the result on success, and FALSE on failure. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_default">$sql</span> = <span class="php_string">"SELECT *</span> <span class="php_string">FROM some_db</span> <span class="php_string">WHERE some_condition='some_condition'"</span>; <span class="php_default">$db</span>-><span class="php_default">query($sql)</span>; </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />fetch_row($result, $type = 'ASSOC') </td> <td class="row2"> This function fetches a row from the DB. Only $result is required. <br /><br /> <b>$result:</b> The result of an executed SQL query. <br /> <b>$type:</b> The type of fetch_row you want to perform. Defaults to ASSOC. <br /><br /> <b>Types:</b> <br /><br /> <b>ASSOC:</b> Fetches an associative array (mysql_fetch_assoc()) <br /> <b>ARRAY:</b> Fetches an array (mysql_fetch_array()) <br /> <b>OBJECT:</b> Fetches an object (mysql_fetch_object()) <br /> <b>ROW:</b> Fetches a single row (mysql_fetch_row()) <br /><br /> Returns row on success, and FALSE on failure. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_keyword">while</span> ( <span class="php_default">$row</span> = <span class="php_default">$db</span>-><span class="php_default">fetch_row</span>(<span class="php_default">$result</span>, <span class="php_string">'ASSOC'</span>) ) { <span class="php_keyword">echo</span> <span class="php_default">$row</span>[<span class="php_string">'field_name'</span>]; } <span class="php_keyword">while</span> ( <span class="php_default">$row</span> = <span class="php_default">$db</span>-><span class="php_default">fetch_row</span>(<span class="php_default">$result</span>, <span class="php_string">'ARRAY'</span>) ) { <span class="php_keyword">echo</span> <span class="php_default">$row</span>[0]; } <span class="php_keyword">while</span> ( <span class="php_default">$row</span> = <span class="php_default">$db</span>-><span class="php_default">fetch_row</span>(<span class="php_default">$result</span>, <span class="php_string">'OBJECT'</span>) ) { <span class="php_keyword">echo</span> <span class="php_default">$row</span>-><span class="php_default">some_field</span>; } <span class="php_keyword">while</span> ( <span class="php_default">$row</span> = <span class="php_default">$db</span>-><span class="php_default">fetch_row</span>(<span class="php_default">$result</span>, <span class="php_string">'ROW'</span>) ) { <span class="php_keyword">echo</span> <span class="php_default">$row</span>[0]; } </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />num_rows($result) </td> <td class="row2"> This function fetches the number of rows affected by the executed SQL query. All arguments are required. <br /><br /> <b>$result:</b> The result of an executed SQL query. <br /><br /> Returns number of rows on success, and FALSE on failure. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_keyword">echo</span> <span class="php_default">$db</span>-><span class="php_default">num_rows</span>(<span class="php_default">$result</span>); </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />free_result($result) </td> <td class="row2"> This function frees up the memory associated with the executed SQL query. All arguments are required. <br /><br /> <b>$result:</b> The result of an executed SQL query. <br /><br /> Returns TRUE always. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_default">$db</span>-><span class="php_default">free_result</span>(<span class="php_default">$result</span>); </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />num_queries() </td> <td class="row2"> This function returns the number of queries that were performed during the scripts execution. <br /><br /> Returns the number of queries performed. <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_keyword">echo</span> <span class="php_default">$db</span>-><span class="php_default">num_queries</span>(); </pre> </td> </tr> <tr> <td class="row1" width="25%"> Function:<br />escape($sql) </td> <td class="row2"> This function escapes a SQL query. <br /><br /> Returns the escaped query <br /><br /> <b>Example:</b> <br /> <pre> <span class="php_default">$sql</span> = <span class="php_string">"SELECT *</span> <span class="php_string">FROM some_table"</span>; <span class="php_default">$sql</span> = <span class="php_default">$db</span>-><span class="php_default">escape</span>(<span class="php_default">$sql</span>); </pre> </td> </tr> </table> <br /> <table class="tablebg" width="90%" align="center" border="0" cellspacing="1" cellpadding="1"> <tr> <th colspan="2"> Variable Reference </th> </tr> <tr> <td class="nav" colspan="2" align="center"> Here are explanations of the variables used in the DB layer. </td> </tr> <tr> <td class="row1" width="25%"> <b>var $connect_id:</b> </td> <td class="row2"> Contains the connection details of the DB connection. </td> </tr> <tr> <td class="row1" width="25%"> <b>var $query_result:</b> </td> <td class="row2"> Contains the result of the executed SQL query. </td> </tr> <tr> <td class="row1" width="25%"> <b>var $query_rowset:</b> </td> <td class="row2"> Contains a row selected from the result of the executed SQL query. </td> </tr> <tr> <td class="row1" width="25%"> <b>var $num_rows:</b> <td class="row2"> Contains the number of affected rows. </td> </tr> <tr> <td class="row1" width="25%"> <b>var $num_queries:</b> </td> <td class="row2"> Contains the number of queries performed in the scripts execution. </td> </tr> </table> <br /> <table class="tablebg" width="90%" align="center" border="0" cellspacing="1" cellpadding="1"> <tr> <th>Example Script</th> </tr> <tr> <td class="nav" colspan="2" align="center"> An example script to demonstrate the features of this layer </td> </tr> <tr> <td class="row1"> <pre> <span class="php_comment">// Include the DB layer, and instantiate a new class</span> <span class="php_keyword">include</span> <span class="php_string">'./db_*.php'</span>; <span class="php_default">$db</span> = <span class="php_keyword">new</span> <span class="php_default">db</span>; <span class="php_comment">// Connect</span> <span class="php_default">$db</span>-><span class="php_default">connect</span>(<span class="php_string">'localhost'</span>, <span class="php_string">'root'</span>, <span class="php_string">''</span>, <span class="php_string">'db'</span>, <span class="php_keyword">FALSE</span>); <span class="php_comment">// Perform a query</span> <span class="php_keyword">switch</span> ( <span class="php_default">DB</span> ) { <span class="php_keyword">case</span> <span class="php_string">'MySQL'</span> : <span class="php_keyword">case</span> <span class="php_string">'MSSQL'</span> : <span class="php_default">$sql</span> = <span class="php_string">"SELECT *</span> <span class="php_string">FROM some_table"</span>; <span class="php_keyword">break</span>; <span class="php_keyword">case</span> <span class="php_string">'Oracle'</span> : <span class="php_default">$sql</span> = <span class="php_string">"Oracle specific code"</span>; <span class="php_keyword">break</span>; } <span class="php_default">$sql</span> = <span class="php_default">$db</span>-><span class="php_default">escape($sql)</span>; <span class="php_default">$result</span> = <span class="php_default">$db</span>-><span class="php_default">query($sql)</span>; <span class="php_comment">// Get the result set</span> <span class="php_keyword">while</span> ( <span class="php_default">$row</span> = <span class="php_default">$db</span>-><span class="php_default">fetch_row($result</span>, <span class="php_string">'ASSOC'</span>) ) { <span class="php_keyword">echo</span> <span class="php_default">$row</span>[<span class="php_string">'field_name'</span>]; } <span class="php_comment">// Get then number of affected rows and number of queries</span> <span class="php_keyword">echo</span> <span class="php_default">$db</span>-><span class="php_default">num_rows($result)</span>; <span class="php_keyword">echo</span> <span class="php_default">$db</span>-><span class="php_default">num_queries()</span>; <span class="php_comment">// Disconnect</span> <span class="php_default">$db</span>-><span class="php_default">disconnect()</span>; </pre> </td> </tr> </table> <br /> <center><a href="http://phpgamedev.sourceforge.net/index.html">Back to Index</a></center> |
|
From: Nick <sph...@us...> - 2005-06-08 02:59:08
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31908 Modified Files: index.html Log Message: New link added. Index: index.html =================================================================== RCS file: /cvsroot/phpgamedev/website/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.html 7 Jun 2005 21:27:43 -0000 1.5 --- index.html 8 Jun 2005 02:58:59 -0000 1.6 *************** *** 37,41 **** <br /> ! <p>We will have a forum set up soon where you will be able to get more information about this project.</p> <!-- End main --> --- 37,41 ---- <br /> ! <p>You can also visit our forum <a href="http://phpgamedev.sourceforge.net/board/">here</a></p> <!-- End main --> |
|
From: Nick <sph...@us...> - 2005-06-08 02:13:30
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7770 Removed Files: mysql.php Log Message: --- mysql.php DELETED --- |
|
From: Nick <sph...@us...> - 2005-06-08 02:12:54
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7391 Added Files: mysql.php Log Message: --- NEW FILE: mysql.php --- <?php //----------------------------------------------------------- // FILENAME: db_mysql.php // STARTED: Tue Jun 7, 2005 // AUTHOR: Sphen001 (Nick Ross) // SUPPORT: http://phpgamedev.sourceforge.net // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net // $Id: mysql.php,v 1.1 2005/06/08 02:12:45 sphen001 Exp $ //----------------------------------------------------------- if ( !defined( 'DB' ) ) { define( 'DB', 'MySQL' ); } class db { var $connect_id; var $query_result; var $query_rowset; var $num_rows; var $num_queries; function connect($db_host, $db_username, $db_password, $db) { if ( $this->connect_id = @mysql_connect($db_host, $db_username, $db_password) ) { if ( @mysql_select_db($db, $this->connect_id) ) { return TRUE; } return FALSE; } return FALSE; } function disconnect() { if ( @mysql_close($this->connect_id) ) { return TRUE; } return FALSE; } function query($query) { if ( $this->query_result = @mysql_query($query) ) { return $this->query_result; $this->num_queries++; } return FALSE; } function fetchrow($result, $type = 'ASSOC') { switch ( $type ) { case 'ASSOC' : if ( $this->query_rowset = @mysql_fetch_assoc($result) ) { return $this->query_rowset; } return FALSE; break; case 'ARRAY' : if ( $this->query_rowset = @mysql_fetch_array($result) ) { return $this->query_rowset; } return FALSE; break; case 'OBJECT' : if ( $this->query_rowset = @mysql_fetch_object($result) ) { return $this->query_rowset; } return FALSE; break; case 'ROW' : if ( $this->query_rowset = @mysql_fetch_row($result) ) { return $this->query_rowset; } return FALSE; break; } } function num_rows(result) { if ( $this->num_rows = @mysql_num_rows($result) ) { return $this->num_rows; } return FALSE; } function free_result($result) { @mysql_free_result($result); return; } function num_queries() { return $this->num_queries; } } ?> |
|
From: Nick <sph...@us...> - 2005-06-08 02:10:00
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5805 Removed Files: db_mysql.php Log Message: --- db_mysql.php DELETED --- |
|
From: Nick <sph...@us...> - 2005-06-08 01:54:36
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31139 Added Files: db_mysql.php Log Message: --- NEW FILE: db_mysql.php --- <?php //----------------------------------------------------------- // FILENAME: db_mysql.php // STARTED: Tue Jun 7, 2005 // AUTHOR: Sphen001 (Nick Ross) // SUPPORT: http://phpgamedev.sourceforge.net // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net // $Id: db_mysql.php,v 1.4 2005/06/08 01:54:24 sphen001 Exp $ //----------------------------------------------------------- if ( !defined( 'DB' ) ) { define( 'DB', 'MySQL' ); } class db { var $connect_id; var $query_result; var $query_rowset; var $num_rows; var $num_queries; function connect($db_host, $db_username, $db_password, $db) { if ( $this->connect_id = @mysql_connect($db_host, $db_username, $db_password) ) { if ( @mysql_select_db($db, $this->connect_id) ) { return TRUE; } return FALSE; } return FALSE; } function disconnect() { if ( @mysql_close($this->connect_id) ) { return TRUE; } return FALSE; } function query($query) { if ( $this->query_result = @mysql_query($query) ) { return $this->query_result; $this->num_queries++; } return FALSE; } function fetchrow($result, $type = 'ASSOC') { switch ( $type ) { case 'ASSOC' : if ( $this->query_rowset = @mysql_fetch_assoc($result) ) { return $this->query_rowset; } return FALSE; break; case 'ARRAY' : if ( $this->query_rowset = @mysql_fetch_array($result) ) { return $this->query_rowset; } return FALSE; break; case 'OBJECT' : if ( $this->query_rowset = @mysql_fetch_object($result) ) { return $this->query_rowset; } return FALSE; break; case 'ROW' : if ( $this->query_rowset = @mysql_fetch_row($result) ) { return $this->query_rowset; } return FALSE; break; } } function num_rows(result) { if ( $this->num_rows = @mysql_num_rows($result) ) { return $this->num_rows; } return FALSE; } function free_result($result) { @mysql_free_result($result); return; } function num_queries() { return $this->num_queries; } } ?> |
|
From: Nick <sph...@us...> - 2005-06-08 01:52:58
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30334 Removed Files: db_mysql.php Log Message: --- db_mysql.php DELETED --- |
|
From: Nick <sph...@us...> - 2005-06-08 01:50:23
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28807 Modified Files: db_mysql.php Log Message: |
|
From: Nick <sph...@us...> - 2005-06-08 01:38:46
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22649 Added Files: db_mysql.php Log Message: Initial commit of MySQL DB layer. --- NEW FILE: db_mysql.php --- <?php //----------------------------------------------------------- // FILENAME: db_mysql.php // STARTED: Tue Jun 7, 2005 // AUTHOR: Sphen001 (Nick Ross) // SUPPORT: http://phpgamedev.sourceforge.net // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net // $Id: db_mysql.php,v 1.1 2005/06/08 01:38:38 sphen001 Exp $ //----------------------------------------------------------- if ( !defined( 'DB' ) ) { define( 'DB', 'MySQL' ); } class db { var $connect_id; var $query_result; var $query_rowset; var $num_rows; var $num_queries; function connect($db_host, $db_username, $db_password, $db) { if ( $this->connect_id = @mysql_connect($db_host, $db_username, $db_password) ) { if ( @mysql_select_db($db, $this->connect_id) ) { return TRUE; } return FALSE; } return FALSE; } function disconnect() { if ( @mysql_close($this->connect_id) ) { return TRUE; } return FALSE; } function query($query) { if ( $this->query_result = @mysql_query($query) ) { return $this->query_result; $this->num_queries++; } return FALSE; } function fetchrow($result, $type = 'ASSOC') { switch ( $type ) { case 'ASSOC' : if ( $this->query_rowset = @mysql_fetch_assoc($result) ) { return $this->query_rowset; } return FALSE; break; case 'ARRAY' : if ( $this->query_rowset = @mysql_fetch_array($result) ) { return $this->query_rowset; } return FALSE; break; case 'OBJECT' : if ( $this->query_rowset = @mysql_fetch_object($result) ) { return $this->query_rowset; } return FALSE; break; case 'ROW' : if ( $this->query_rowset = @mysql_fetch_row($result) ) { return $this->query_rowset; } return FALSE; break; } } function num_rows(result) { if ( $this->num_rows = @mysql_num_rows($result) ) { return $this->num_rows; } return FALSE; } function free_result($result) { @mysql_free_result($result); return; } function num_queries() { return $this->num_queries; } } ?> |
|
From: Nick <sph...@us...> - 2005-06-08 01:37:22
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21946 Removed Files: db.php Log Message: --- db.php DELETED --- |
|
From: Nick <sph...@us...> - 2005-06-07 21:27:52
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31786 Modified Files: index.html Log Message: Index: index.html =================================================================== RCS file: /cvsroot/phpgamedev/website/index.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.html 7 Jun 2005 21:25:31 -0000 1.4 --- index.html 7 Jun 2005 21:27:43 -0000 1.5 *************** *** 14,18 **** <!-- Begin main --> ! <p>Thank you for visiting the PHPGameDev website. This is a project designed to help game designers simplify their tasks. We hope to provide several plugins that will help game designers to do their work faster. You can visit our Sourceforge.net Project page <a href="http://www.sourceforge/net/projects/phpgamedev">here</a></p> <br /> --- 14,18 ---- <!-- Begin main --> ! <p>Thank you for visiting the PHPGameDev website. This is a project designed to help game designers simplify their tasks. We hope to provide several plugins that will help game designers to do their work faster. You can visit our Sourceforge.net Project page <a href="http://www.sourceforge.net/projects/phpgamedev">here</a></p> <br /> |
|
From: Nick <sph...@us...> - 2005-06-07 21:25:40
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30543 Modified Files: index.html Log Message: Added some links. Index: index.html =================================================================== RCS file: /cvsroot/phpgamedev/website/index.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.html 6 Jun 2005 22:26:36 -0000 1.3 --- index.html 7 Jun 2005 21:25:31 -0000 1.4 *************** *** 14,18 **** <!-- Begin main --> ! <p>Thank you for visiting the PHPGameDev website. This is a project designed to help game designers simplify their tasks. We hope to provide several plugins that will help game designers to do their work faster.</p> <br /> --- 14,18 ---- <!-- Begin main --> ! <p>Thank you for visiting the PHPGameDev website. This is a project designed to help game designers simplify their tasks. We hope to provide several plugins that will help game designers to do their work faster. You can visit our Sourceforge.net Project page <a href="http://www.sourceforge/net/projects/phpgamedev">here</a></p> <br /> |
|
From: Nick <sph...@us...> - 2005-06-07 13:55:49
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18892 Modified Files: template.php Log Message: Index: template.php =================================================================== RCS file: /cvsroot/phpgamedev/plugins/template.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** template.php 7 Jun 2005 13:53:25 -0000 1.1 --- template.php 7 Jun 2005 13:55:39 -0000 1.2 *************** *** 7,10 **** --- 7,11 ---- // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net + // $Id$ //----------------------------------------------------------- |
|
From: Nick <sph...@us...> - 2005-06-07 13:55:09
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18549 Modified Files: db.php Log Message: Index: db.php =================================================================== RCS file: /cvsroot/phpgamedev/plugins/db.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db.php 7 Jun 2005 13:54:06 -0000 1.1 --- db.php 7 Jun 2005 13:54:56 -0000 1.2 *************** *** 7,10 **** --- 7,11 ---- // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net + // $Id$ //----------------------------------------------------------- |
|
From: Nick <sph...@us...> - 2005-06-07 13:54:15
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18119 Added Files: db.php Log Message: Initial commit. --- NEW FILE: db.php --- <?php //----------------------------------------------------------- // FILENAME: db_mysql.php // STARTED: Tue Jun 7, 2005 // AUTHOR: Sphen001 (Nick Ross) // SUPPORT: http://phpgamedev.sourceforge.net // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net //----------------------------------------------------------- class db { } ?> |
|
From: Nick <sph...@us...> - 2005-06-07 13:53:39
|
Update of /cvsroot/phpgamedev/plugins In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17803 Added Files: template.php Log Message: Initial commit. --- NEW FILE: template.php --- <?php //----------------------------------------------------------- // FILENAME: template.php // STARTED: Tue Jun 7, 2005 // AUTHOR: Sphen001 (Nick Ross) // SUPPORT: http://phpgamedev.sourceforge.net // COPYRIGHT: Copyright 2005 © PHPGameDev Group // E-MAIL: Sphen001 -at- users -dot- sourceforge -dot- net //----------------------------------------------------------- class template { } ?> |
|
From: Nick <sph...@us...> - 2005-06-06 22:26:44
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25258 Modified Files: index.html Log Message: Index: index.html =================================================================== RCS file: /cvsroot/phpgamedev/website/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.html 6 Jun 2005 22:18:03 -0000 1.2 --- index.html 6 Jun 2005 22:26:36 -0000 1.3 *************** *** 8,12 **** <body> <!-- Begin header --> ! <h1 align="center">Welcomed to the PHPGameDev website</h1> <!-- End header --> --- 8,12 ---- <body> <!-- Begin header --> ! <h1 align="center">Welcome to the PHPGameDev website</h1> <!-- End header --> |
|
From: Nick <sph...@us...> - 2005-06-06 22:18:29
|
Update of /cvsroot/phpgamedev/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20767 Modified Files: index.html Log Message: Index: index.html =================================================================== RCS file: /cvsroot/phpgamedev/website/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.html 6 Jun 2005 21:52:03 -0000 1.1 --- index.html 6 Jun 2005 22:18:03 -0000 1.2 *************** *** 8,12 **** <body> <!-- Begin header --> ! <h1 align="center">Welcome to the PHPGameDev website</h1> <!-- End header --> --- 8,12 ---- <body> <!-- Begin header --> ! <h1 align="center">Welcomed to the PHPGameDev website</h1> <!-- End header --> |