Jump to content

Cesario

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Cesario's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=361203:date=Apr 3 2006, 08:43 AM:name=thorpe)--][div class=\'quotetop\']QUOTE(thorpe @ Apr 3 2006, 08:43 AM) [snapback]361203[/snapback][/div][div class=\'quotemain\'][!--quotec--] php runs on a [i]web[/i]server so uses the hyper text transfer proticol (http) to recieve requests. [/quote] ic.. but wad r the main points i need to take note on when im creating it?
  2. Regardin about wad i said jus now. Im actually doing on a PHP server, in which i had to interact wif a mobile device via GPRS. Im not sure about how the server should receive data from the incoming mobile handset via GPRS. And should i created something like a xxxx.php to process all? Seriously nid help thx ^^
  3. As above, im using a Mobile set using J2ME to actually have constant connection to the server, using PHP. Im not very sure about this. So plz guide me thx ^^
  4. anywae, im more or less done wif it, jus dat i still cant get connected to the database and dunt even noe y. there error is still the same and i even read thru the links.
  5. i dont see a manual in the dropdownlist.
  6. [!--quoteo(post=358017:date=Mar 24 2006, 02:08 PM:name=keeB)--][div class=\'quotetop\']QUOTE(keeB @ Mar 24 2006, 02:08 PM) [snapback]358017[/snapback][/div][div class=\'quotemain\'][!--quotec--] adodb is a class that can be used to connect to a mysql database, but you need to do all of your work within that adodb class.. installing mySQL with php is very simple, and there's a guide at [a href=\"http://www.php.net\" target=\"_blank\"]http://www.php.net[/a] .. just search for 'mySQL' and select 'manual' in the dropdown. GOOD LUCK [/quote] but i got this error which point my sql connection Debug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect() and when i check it out, its this. if (ADODB_PHPVER >= 0x4300) $this->_connectionID = mysql_connect($argHostname,$argUsername,$argPassword, $this->forceNewConnect,$this->clientFlags); i dont understand the forcenewconnect and clientflags, wad has these got to be related to me loggin into my database?
  7. [!--quoteo(post=357898:date=Mar 24 2006, 07:09 AM:name=AV1611)--][div class=\'quotetop\']QUOTE(AV1611 @ Mar 24 2006, 07:09 AM) [snapback]357898[/snapback][/div][div class=\'quotemain\'][!--quotec--] Debug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect() A couple of quesitons: 1. Are you trying to connect to adodb? or to mysql? 2. The error you are getting typically means you are using a server with PHP but mysql has not been enabled... PHP 5 dropped native support, you have to enable it... and in 4 is can be disabled if you choose... [/quote] how do i enable it. i was told to use adodb to actually get connected between PHP n MySQL.
  8. HI guys, im new to PHP. Recently i have been assigned to do PHP stuffs. IM having problems with the connection to MYSQL server using ADOdb to connect. My error is Debug Error: adodb\drivers\adodb-mysql.inc.php line 354 - Call to undefined function mysql_connect() Even though i have jus written jus a few sentence of codes. <?php require'adodb/adodb.inc.php'; $conn = &ADONewConnection('mysql'); $conn->connect('LOcalhost','rootx','cex','w2paylitex'); if(! $DB) { die("The problem was "); } else { print "connected"; } ?> Thankx
×
×
  • 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.