Re: [PHP-DB] Is MySQL in 4.0.6?

2001-06-27 Thread Phil Driscoll
On Tuesday 26 June 2001 10:43, Karsten Dambekalns wrote: The small size package contains only the binary without any additional modules. Get the full size version, or compile yourself. BTW: I think that is explained on the download page. The small size package *does* include MySQL support

[PHP-DB] How do I keep the values of objects when refreshing page?

2001-06-27 Thread Hector M Banda
Hi all, My page is getting the values and the submits itself displaying the information but the original selection is gone showing the objects with no info. Thanks, -- === Hector M Banda Fax: (425) 790-6379

Re: [PHP-DB] php/mysql horizontal listing query

2001-06-27 Thread Paul Burney
on 6/26/01 10:43 AM, Matt Nigh at [EMAIL PROTECTED] wrote: I need a section of a record label site with a releases section listed horizontally but here's the twist: after every 4 releases, I want the releases to move to the next columns below. ex. release#1, release#2, release#3,

[PHP-DB] error ORA-12699

2001-06-27 Thread sang
I have installed NT4+PHP+ORACLE8.0.4+APACHE in my computer. I want to access ORACLE server to another computer from web server. It is ok to access ORACLE SERVER with PERL, but i cannot access using PHP. The first error is ora-12514 , but i change, change and change, now it is always ORA-12699

[PHP-DB] making queries

2001-06-27 Thread Christian Sandfeld
Yes, it's possible. What you do is write the var names and values after the page name as follows: a href=mylink.php?foo=barbar=fooclick my link/a This would call a script called mylink.php, initializing two vars, namely $foo (containing the value 'bar') and $bar (containing the value 'foo').

Re: [PHP-DB] php/mysql horizontal listing query

2001-06-27 Thread Dobromir Velev
Hi, may be this will be helpfull $res=mysql_query(select release from tbl_release); for ($i=1;$i=4;$i++){ if ($i==1)echo tr; $row=mysql_fetch_row($res); if ($row) echo TD$row[0]/TD; else { $end=1; echo tdnbsp;/td; } if ($i!=4)echo 'TDnbsp;/TD'; if ($i==4){

RE: [PHP-DB] Variable Variables in PHP

2001-06-27 Thread Taylor, Stewart
? You are allowed the have input fields with the same name on a form, the browser creates an array of these fields, e.g. to access them using javascript form.name[index].value. You need to inform php that these fields are arrays by putting an '[]' after the INPUT fields name. Then when the

[PHP-DB] Storing Code in a db?

2001-06-27 Thread Mark @ 10base-t
Hey there, Is it possible to store code like a function, for example, in a mysql database and pull it into a php dynamicallly so you can use the function if needed? Mark

Re: [PHP-DB] error ORA-12699

2001-06-27 Thread Anthony Carlos
Sang, Since you're trying to connect from another computer to the Oracle server, you probably need to specify a connect string in the OCILogon command. OCILogon('system', 'manager', $connect_string); What's the value for $connect_string? It depends on how you've set-up your Oracle networking.

Re: [PHP-DB] Extracting enum/set values from database

2001-06-27 Thread Jason Stechschulte
On Fri, Jun 22, 2001 at 04:45:53PM -0700, Todd A. Jacobs wrote: Is there a way to dynamically build an option list from an enum/set type? In other words, if I don't know the possible values of the enum or set field ahead of time, how can I retrieve that information at run-time? Here is a

Re: [PHP-DB] error ORA-12699

2001-06-27 Thread sang
I have read some doc. $connect_string is set to equal from tnsnames.ora. $connect_string=(DESCRIPTION=(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.1)(PORT = 1521))(CONNECT_DATA = (SID = ORCL))); I can connect my local oracle server before when using OCILogon(system,manager); But now , i

[PHP-DB] Modify Query, or sift through results?

2001-06-27 Thread Joseph Koenig
I've got a script that searches a db every night and sends out e-mail if it finds something a person would be interested in, based on criteria they gave us. The problem is that I have one field that stores regions of the country in a very unpleasant way. It stores them as: Northeast;West;South

Re: [PHP-DB] Variable Variables in PHP

2001-06-27 Thread Jason Stechschulte
On Wed, Jun 27, 2001 at 12:03:42PM +1000, Morgan Tocker wrote: ## THIS SHOULD SUBMIT SOMETHING LIKE THIS test.php?name1=avalueemail1=avalueagainname2=secondnameemail2=secondemail THE PROBLEM: From PHP with variable variables, how do I change $name1 and $email1 into - ## for all

[PHP-DB] perl fork() in PHP?

2001-06-27 Thread Tom Hodder
Can I do something similar to the perl fork() in php and if so, does anyone know of any examples of this. regards Tom Hodder -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP-DB] FW: strange numbers in link

2001-06-27 Thread sgibbs
Our website uses mysql/php. I found the link written below as a hard coded link and I can't figure out why the programmer would have used c2x5han as a keyword instead of using chan as the keyword- which is an acronym for Child Health Nutrition. A