[PHP-DB] ocilogon timeout

2005-03-18 Thread Juffermans, Jos
Hi, Some of our scripts that generate customer-facing pages, need a connection to a database. The problems is that the database is in Norway and - allthough we have a VPN setup - the connection isn't always available. In case the connection cannot be made, we can redirect the customer to a

RE: [PHP-DB] String pictures in MySQL

2005-03-18 Thread Bastien Koert
examples of how to get them into the db (use a blob field) http://www.weberdev.com/get_example-4063.html and get the out http://www.weberdev.com/get_example-4062.html bastien From: Bunmi AKinmboni [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] String pictures in MySQL Date: Fri, 18

[PHP-DB] Re: Problems with 4.3.10 and SQL Server

2005-03-18 Thread John Lim
Hi There are serious bugs in mssql support in 4.3.10. Get the latest snapshot from CVS and update php_mssql.dll http://snaps.php.net/ Aifoundations.Org [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I don't see many SQL Server posts here but I will give it a shot. I am using PHP

[PHP-DB] dynamic data manipulation in form

2005-03-18 Thread Doug Finch
I have a script that I have written in PHP that is a basic form that inputs simple text into a mysql db. One section is just a textarea value that I would like to be able to add some dynamic formatting to the text being entered if the user wants. For example, I want to give the user the

RE: [PHP-DB] dynamic data manipulation in form

2005-03-18 Thread Bastien Koert
You can add bbcode or for true 'wow 'em' factors, use htmlarea (www.htmlarea.com) bastien From: Doug Finch [EMAIL PROTECTED] To: phpdb-list php-db@lists.php.net Subject: [PHP-DB] dynamic data manipulation in form Date: Fri, 18 Mar 2005 15:42:18 -0600 I have a script that I have written in PHP

[PHP-DB] undefined function error

2005-03-18 Thread Chip Wiegand
I have a web site that connects to a mysql database using this connect script - ? $db=mysql_connect(localhost,***,***); mysql_select_db(simradusa,$db); ? When I access the page it gives me this error - Fatal error: Call to undefined function: mysql_connect() in

RE: [PHP-DB] undefined function error

2005-03-18 Thread Bastien Koert
from the php manual [quote] This MySQL extension doesn't support full functionality of MySQL versions greater than 4.1.0. For that, use MySQLi. [/quote] http://ca3.php.net/manual/en/ref.mysqli.php bastien From: Chip Wiegand [EMAIL PROTECTED] To: PHP DB php-db@lists.php.net Subject: [PHP-DB]

Re: [PHP-DB] dynamic data manipulation in form

2005-03-18 Thread Mark Cain
You can try tinyMCE http://moxiecode.com/downloads_tiny_mce.php Mark Cain - Original Message - From: Doug Finch [EMAIL PROTECTED] To: phpdb-list php-db@lists.php.net Sent: Friday, March 18, 2005 4:42 PM Subject: [PHP-DB] dynamic data manipulation in form I have a script that I have

Re: [PHP-DB] undefined function error

2005-03-18 Thread Mark Cain
It could be possible that mySQL is not enabled in your installation of PHP. Let the server parse a page with phpinfo() in it and read the results. Look for mySQL enabled. Perhaps the reason it runs fine on another server is that the php on that server has mysql enabled. HTH, Mark Cain -

[PHP-DB] MySQL - Query within a query

2005-03-18 Thread Pete Ruby
I am looking to do the following w/ MySQL and PHP. Have 1 query that gets results, then use those results in another query: $l = 2; $result1 = (SELECT * FROM Drivers WHERE League = $l); $result2 = mysql_query(SELECT DriverID, Driver, CarNbr FROM Drivers LEFT JOIN $LeagueList ON