[PHP-DB] Sessions

2002-02-04 Thread Álvaro Muñoz Sánchez
Hi, all First of all, I apologize if this is a dump question but I can't find the answer. I'm trying to use sessions to keep the information about user and password in a database driven web application. I am trying with a simple web page but I can't make it work correctly. Help me, please. En

RE: [PHP-DB] Is ODBC now the Native interface for MS-SQL7/2000 ?

2002-02-04 Thread Oliver Cronk
Thanks for that Info, why is it the best information like this is hidden? This sort of thing should be documented, don't you agree? The unix solution sounds interesting - I'll certainly look into it for other projects (this client actually moved away from Linux/Apache to Win2000/IIS due to lack o

[PHP-DB] query from two tables

2002-02-04 Thread Ivan Balazs
Hi! The situation: I have 2 tables in an adverising site. In one table, i have the cities used by advertisers, and in the other there are the ads.This ad table has a field which refers to the id of the city in that table. The problem: what mysql method should i use if i want to order the query b

Re: [PHP-DB] query from two tables

2002-02-04 Thread DL Neil
Hi Balazs, > The situation: I have 2 tables in an adverising site. In one table, i have > the cities used by advertisers, and in the other there are the ads.This ad > table has a field which refers to the id of the city in that table. > > The problem: what mysql method should i use if i want to

[PHP-DB] Oracle connection

2002-02-04 Thread Paulo Cesar
I'm trying to connect to a Oracle database but i'm receiving the following error message in the browser: Fatal error: Call to undefined function: ora_logon() in /home/httpd/html/restrito/testes/teste_bd.php on line 17 I'm starting to learn PHP now, so I don't know what does it means or what I

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
Hey did you get it to work yet?!?! Dan On Sunday, February 3, 2002, at 09:08 PM, [EMAIL PROTECTED] wrote: > Umm.. > > SET parameter is for the UPDATE query > > > "Adam Royle" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >> You missed the SET parameter in

RE: [PHP-DB] ODBC

2002-02-04 Thread Andrew Hill
Morten, ODBC stands for "Open Database Connectivity". It's a connection layer (API) that is non-database-specific. This removes application dependence on one particular database, e.g. using ODBC instead of "native" functions allows you to write your application against MySQL and then deploy on O

RE: [PHP-DB] query from two tables

2002-02-04 Thread Rick Emery
Since you gave no real details of your table structure, I'll conjecture. Assume city table and advert table is defined as: CREATE TABLE city ( city_id int not null, auto_increment, city_name varchar(50) default "" ) CREATE TABLE adverts ( ad_id int not null auto_increment, ad_text varchar(200) d

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
Make sure the path name is correct Let's say you compiled apache with this prefix /web you must have the full path name to work...like this exec("cp '$ResumeUp' '/web/htdocs/resumes/$ResumeUp2'"); Also check permissions... I think that was my problem at first too!!! You can also do

[PHP-DB] MySQL

2002-02-04 Thread Morten Nielsen
Hi, Is there an easy way to see the data in a table? I made a table that contains information about people. How do I see/change the contenst of the table? Thanks, Morten -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] MySQL

2002-02-04 Thread Richard Black
Easiest way is to download and install phpMyAdmin. http://phpmyadmin.sourceforge.net/ HTH Richy -Original Message- From: Morten Nielsen [SMTP:[EMAIL PROTECTED]] Sent: 04 February 2002 16:34 To: [EMAIL PROTECTED] Subject:[PHP-DB] MySQL Hi, Is there an easy way to see th

Re: [PHP-DB] MySQL

2002-02-04 Thread Mike Maltese
Go download PHPMyAdmin. - Original Message - From: "Morten Nielsen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 04, 2002 8:34 AM Subject: [PHP-DB] MySQL > Hi, > Is there an easy way to see the data in a table? > I made a table that contains information about peop

RE: [PHP-DB] MySQL

2002-02-04 Thread Peter Lovatt
--- Excellence in internet and open source software --- Sunmaia www.sunmaia.net [EMAIL PROTECTED] tel. 0121-242-1473 --- > -Original Message- > From: Pete

[PHP-DB] Combined sql statement

2002-02-04 Thread jas
I would like to know how to have a php script loop through two different sql statements and use one according to a yes or no answer. I am still kinda new to php and I already have my sql statements, but I dont know how to use php to tell it to use one of the other. My sql statements are as follo

[PHP-DB] Re: Poisoned Persistent OCI8 Connections

2002-02-04 Thread Hans Zaunere
Unfortunetly I'm stuck with the Oracle setup I've been dealt. It's an already deployed production-level server and is not going to change any time soon. So, I need to find some other way of getting around this using PHP and maybe some other magic. If anyone has any ideas, please let me know. T

[PHP-DB] MySQL connect

2002-02-04 Thread J Leonard
Hi all, Ok I am learning this on my own but I could use some help. I have started these two pages test.php and config.php here is the code: test.php config.php All I'm trying to do is successfully connect to the database but it returns "sorry not successful". What have I done wrong? I have

Re: [PHP-DB] Re: LEFT JOIN in UPDATE

2002-02-04 Thread Adv. Systems Design
I was simply going by the docs themselves: http://www.mysql.com/doc/A/N/ANSI_diff_Sub-selects.html (see bottom of page) ...and to say that its up to the programmer to provide such features is like saying that the lack of brakes in my Yugo was a feature "designed" that way because it is up to me t

Re: [PHP-DB] MySQL

2002-02-04 Thread Ken Thompson
I'm just learning MySQL and PHP so this fresh from my last snoop through the documentation, hope it will help. >From the command line you can make a global query like - SELECT * FROM pets; and all the info stored in the table will be shown. To update a record use the update query: UPDATE pet SE

Re: [PHP-DB] MySQL connect

2002-02-04 Thread Ken Thompson
On Monday 04 February 2002 10:54 am, you wrote: > Hi all, > > Ok I am learning this on my own but I could use some help. > I have started these two pages test.php and config.php here is the code: > > test.php > > // include the database configuration > include "config.php"; In looking at my "inc

Re: [PHP-DB] Combined sql statement

2002-02-04 Thread Miles Thompson
This just showed up, where was it stuck? Essentially you do a SELECT into your target table, if the target key exists, which you determine from row count, then you do an UPDATE, otherwise an INSERT. I don't know what else you have wrapped around this, in terms of control structure, so here's

Re: [PHP-DB] MySQL connect

2002-02-04 Thread Paul Burney
on 2/4/02 12:54 PM, J Leonard at [EMAIL PROTECTED] appended the following bits to my mbox: > mysql_connect($db["host"],$db["user"],$db["password"],$db["database"]) or The above function call only has three parameters. The database isn't specified in the connect call but selected later. Try: m

RE: [PHP-DB] MySQL connect

2002-02-04 Thread Gurhan Ozen
mysql_connect() function only takes 3 arguments (servername, username, pass) . Select your database by using mysql_select_db() function... Try to rewrite the code as: mysql_connect($db["host"],$db["user"],$db["password"]); mysql_select_db($db["database"]); Refer to: http://www.php.net/manual/en/

[PHP-DB] Need HELP w/Oracle Query and OCIFetchStatement

2002-02-04 Thread Randall Barber
Hi-- In times past (in fact, within the same web site) I use OCIFetchStatement($qry, $arrayResults); Later I use the following code to access a value within the array: $arrayResults['FIELD'][0] This works great! BUT, now I have a slightly more complicated query. When I call OCIFetchStatement(

[PHP-DB] Subject: Re: FIle Uploading to database

2002-02-04 Thread neil smith
RE Could not execute f query : Is it possibly a typo, such that INSERT INTO Canidate should read Candidate (ie with the correct number of d's for the english speling ;-) Just a thought. Neil. At 02:13 04/02/2002 +, "Todd Williamsen" <[EMAIL PROTECTED]> wrote: $query = "INSERT INTO

Re: [PHP-DB] Re: LEFT JOIN in UPDATE

2002-02-04 Thread Lutz Brückner
[EMAIL PROTECTED] (Adv. Systems Design) writes: > I was simply going by the docs themselves: > http://www.mysql.com/doc/A/N/ANSI_diff_Sub-selects.html > (see bottom of page) yes, using REPLACE may be a solution. But you have to make a copy of the original table, because REPLACE cannot access th

[PHP-DB] Re: Integrating Windows TTF fonts with GNU/Linux - HOWTO

2002-02-04 Thread CK Raju
> Friends, > For all those who wanted to see fonts of local language, already > available on Windows platform on Linux machine. > > Here's how I integrated them on GNU/Linux as root. > > Step 1 : > Created a new directory 'TrueType' under /usr/X11R6/lib/X11/fonts. > > S

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
GOOD What was the problem!?!? Dan On Monday, February 4, 2002, at 01:44 PM, [EMAIL PROTECTED] wrote: > Ok, > > I got it woohoo!!! > > It works! > > Thanks for all your help > > -Original Message- > From: Dan Brunner [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 04, 2002 10:

[PHP-DB] Update

2002-02-04 Thread Jennifer Downey
Hi, I am having problems with this code. I want to update a members number of days they have been a member can anyone help? $query["days"]=("UPDATE users set days_member VALUES = ('days_member' + '1')); $result=mysql_query($query["days"]); Thanks in advance JD -- PHP Database Mailing List (

Re: [PHP-DB] Update

2002-02-04 Thread Jeremy Peterson
Hello, I am not sure why you want to do this. Wouldn't it be better to use calculate the days from the date signed up, rather than through updating your database every day. Try using datediff. Jeremy At 01:51 PM 2/4/2002 -0800, Jennifer Downey wrote: >Hi, > >I am having problems with this c

RE: [PHP-DB] Update

2002-02-04 Thread Gurhan Ozen
Try it without quotes around days_member and 1. Gurhan -Original Message- From: Jennifer Downey [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:51 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Update Hi, I am having problems with this code. I want to update a members numbe

Re: [PHP-DB] Update

2002-02-04 Thread DL Neil
Hi Jennifer, > I am having problems with this code. I want to update a members number of > days they have been a member can anyone help? > > $query["days"]=("UPDATE users set days_member VALUES = ('days_member' + > '1')); > $result=mysql_query($query["days"]); =1 RTFM 6.4.5 UPDATE Syntax =2 W

RE: [PHP-DB] Update

2002-02-04 Thread Gurhan Ozen
Yeah I didn't notice that.. VALUES must not be there . it should be : set days_member=days_member+1 thanks for pointing that out:) Gurhan -Original Message- From: Lokesh Verma [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 5:12 PM To: Gurhan Ozen Subject: Re: [PHP-DB] Up

Re: [PHP-DB] Update

2002-02-04 Thread Miles Thompson
Why? There's absolutely no point -- record the date a person became a member and calculate the number of days from that. In addition, what happens when you fail to run the update routine? Or someone runs it twice? Or it half runs, then dies because the database has gotten so large that the sc

[PHP-DB] Re: File Uploading to database

2002-02-04 Thread Ric Manalac
hi, straying from technical solutions, have you checked for any spelling error? looking at what you pasted in the mailing list, you have: $query = "INSERT INTO Canidate" shouldn't Canidate be Candidate instead? then... VALUES ('$FirstName', '$LastName', '$Industry' '$Address1', 'Address2', '$C

[PHP-DB] PHP + SQL Books

2002-02-04 Thread William Fong
I'm looking for some recommendations on PHP + SQL 'cook books'. I've had some for other apps, like PERL, and have found them very useful for learning techniques. I already have a number of PHP and SQL books, but they usually don't help each other. Any recommendations would be great. Thanks, w

Re: [PHP-DB] Update

2002-02-04 Thread Jennifer Downey
Why? Because I am learning. It seemed like the way to do it. I didn't know all those things could happen. There is NO documentation, manual or tutorial for that matter that gives clear, in English directions on how to do something. People just assume that everyone knows techie talk. So they explai

[PHP-DB] Dealing with One-to-Many SELECTS (MySQL)

2002-02-04 Thread hz11
Hello, I have three tables: CREATE TABLE event ( eid int(10) unsigned NOT NULL auto_increment, tid smallint(5) unsigned NOT NULL default '0', itimestamp int(10) unsigned NOT NULL default '0', etimestamp int(10) unsigned NOT NULL default '0', somethingelse tinyint(4) NOT NULL default '

Re: [PHP-DB] Update

2002-02-04 Thread Miles Thompson
Jennifer, I appreciate and I'm glad that you're learning. What you were proposing is an easy trap to fall into. It's just that I've worked on systems where, for no apparent reason, the designer had decided to store the number of days/months someone had been a member / tenant / on-account custo

[PHP-DB] RE: Combined sql statement

2002-02-04 Thread Frank Flynn
Miles is correct, this the standard way (without knowing your application and if I could figure out another trick). But if you absolutely don't want to use two SQL blocks you can set your SQL block to something like this: $sql = " DELETE FROM $table_name WHERE our_serv = \"$our_serv\" INSERT

[PHP-DB] Re: php-db Digest 5 Feb 2002 02:30:20 -0000 Issue 1034

2002-02-04 Thread Frank Flynn
Hans, On 2/4/02 6:30 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > From: hz11 <[EMAIL PROTECTED]> > Date: Mon, 04 Feb 2002 21:17:15 -0500 > To: [EMAIL PROTECTED] > Subject: Dealing with One-to-Many SELECTS (MySQL) > > > > to get a single event. This all works fine, however this is

[PHP-DB] odbc functions

2002-02-04 Thread Richard Black
Does anyone have experience of using odbc_primarykeys??? I'm writing a script to let me port a database from Access to MySQL without having to write all the table definitions by hand. But I can't get odbc_primarykeys to work - it comes back with: Warning: SQL error: , SQL state 0 in SQLPri

RE: [PHP-DB] odbc functions

2002-02-04 Thread Andrew Hill
Richard, Simple example using MS SQL Server: Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- > From: Richard Black [mailto:[EMAIL PROTECTED]] >

[PHP-DB] Re: Oracle connection

2002-02-04 Thread Philippe Saladin
The oracle extension is not installed. This is why PHP doesn't recognize ora_logon(). So you have to install PHP with oracle extension. BTW, you would prefer installing oci8 extension instead of oracle. oci8 is the newest extension to connect to an oracle 7 or 8 database (see ocilogon() and friend