Jump to content

Bern42

Members
  • Posts

    5
  • Joined

  • Last visited

Bern42's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Download the TEXT File Sorry if the Link of the file isnt working I uploaded it again and Used different host its just a text file... How to parse a file? thanks
  2. Uploading the TXT file andHow to read the TXT Files and Insert it on the Database.I have posted a link of the Files i will insert on the database of the server.THE TXT FILE-Reading in boxscore text files produced from the nba live game. We need to be able to read those files and store the game and stats (TXT File) into the database.Thanks I hope someone can help thanks..
  3. But What will I put on the Table Prefix?Thanks.. It seems your a good PHP Programmer would you suggest any other books to learn more about PHP what i mean the complete.. Yeah W3School helped me on PHP scripting but I need some reference to read when Im in school or not online... Thanks..
  4. <?$dbms = 'mysql';$dbhost = 'localhost';$dbname = 'databasename';$dbuser = 'username';$dbpasswd = 'password';$table_prefix = '';?> CONFIG.phpWill I change the dbhost, dbname, dbuser, dbpasswd preferneces to my Database fields? Thanks
  5. <? include('config.php'); include('mysql.php'); include('inc_search.php');?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><TITLE>Player Search</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><LINK href="nball.css" type=text/css rel=stylesheet><script src="nball.js" type=text/javascript></SCRIPT></head><body id="viewPlayer"><div id="mainbox"><div id="topheading">Player Search</div><div id="blackspacer"><center><img src=logo.gif></img></center><br><div id="box"><? include("menu.php"); ?></div></div><div id="contentbox"><? createSearchBox($HTTP_POST_VARS); if ($submit == 1) { $sql = createSQL($HTTP_POST_VARS); $db = new sql_db($dbhost, $dbuser, $dbpasswd, $dbname, false); $result = $db->sql_query($sql); $row = $db->sql_fetchrowset($result); createTeamLineup($row); }?></div><!-- div:contentbox--></div><!-- div:box --><? include('footer.php'); ?></body></html> Hi Im bern and Im new at PHP scripting I got this League Manager I did but I still have errors on some of my pages I think its on the connection of database. Could some one tell me what the problem and help me solve the script error... Thanks hope to hear it from you soon...
×
×
  • Create New...