[PHP-DB] Help with formating text from PHP

2003-08-14 Thread Budelak
Hello, Can someone help with this problem I've been trying to solve but don't how to. I have a field of type longtext that contains text with paragraphs at the time of entry. But when I display this text content, the paragraphs are not shown. Everything will just appear in one long text with n

Re: [PHP-DB] Help needed with variable scoping? or mysql problem

2003-08-14 Thread jeffrey_n_Dyke
ROTECTED]To: [EMAIL PROTECTED] rg> cc: Subject: [PHP-DB] Help needed with variable scoping? or mysql problem

Re: [PHP-DB] Help with formating text from PHP

2003-08-14 Thread Budelak
You guys thanks for the encouragement. I finally solved it with this: ", $rsDailynewsDetail->Fields('newsfull')); echo $text; ?> Help came of course from the link Holmes gave. Thanks. Budelak wrote: Yes. Itis with enter key. It will not be possible to pre-determine the length as this field is su

[PHP-DB] Help needed with variable scoping? or mysql problem

2003-08-14 Thread Mike Klein
I've been using JSP for some time now, and thought I'd write a couple of rdbms explorers (flat tables, simple master/detail paradigm) using other technologies, like PHP, Cocoon, etc. Well...it's been fun. I have more working than not. But now I am hung up. I am getting wierd results in a php script

Re: [PHP-DB] Help with formating text from PHP

2003-08-14 Thread Budelak
Yes. Itis with enter key. It will not be possible to pre-determine the length as this field is supposed to be a news field. I'm lost as to how to go about this as the enter key does not generate chr(13) when saving. I'm really lost. Holmes directed me to http://us2.php.net/nl2br. I'm currently

Re: [PHP-DB] Help with formating text from PHP

2003-08-14 Thread Andrew D. Luebke
Well, as one of the last posts said, if you are displaying in a web browser, via HTML, you need to insert tags where you want the text to go to the next line. HTML doesn't respond to /r/n pairs. So if that is how the user types them in (with a enter key at the end of lines) you need to repla

Re: [PHP-DB] Help with formating text from PHP

2003-08-14 Thread John W. Holmes
Budelak wrote: Hello, Can someone help with this problem I've been trying to solve but don't how to. I have a field of type longtext that contains text with paragraphs at the time of entry. But when I display this text content, the paragraphs are not shown. Everything will just appear in one

Re: [PHP-DB] Help with formating text from PHP

2003-08-10 Thread John W. Holmes
Budelak wrote: You guys thanks for the encouragement. I finally solved it with this: ", $rsDailynewsDetail->Fields('newsfull')); echo $text; ?> Help came of course from the link Holmes gave. You're welcome, I think. Why didn't you just use nl2br()? If you must use a method like you're using now

Re: [PHP-DB] Help with formating text from PHP

2003-08-10 Thread Budelak
The text are type into an input field by the user who is nonot a programmer at all. This inputt field updates the database that is later called up for display. Bunmi Andrew D. Luebke wrote: How are the paragraph breaks represented in the original text? You have have to detect the paragraph bre

[PHP-DB] HELP: mssql for php under linux

2003-08-07 Thread Spirovski Bozhidar
Hi all I have installed RedHat 9 linux with apache 2 and php support. The current version of everuthing running looks like this: [EMAIL PROTECTED] root]# rpm -qa|grep httpd httpd-devel-2.0.40-21.3 redhat-config-httpd-1.0.1-18 httpd-2.0.40-21.3 httpd-manual-2.0.40-21.3 [EMAIL PROTECTED] root]# r

Re: [PHP-DB] Help... PostgreSQL on Windows 98!

2003-07-25 Thread ctineo
Hi: I can run postgres under win98 (SE) only with cygwin (only client not server) > Hi, > I'm trying to use PostgreSQL on Windows98! > Does anyone here succeded with it? > > Thanks > Bruno (sorry.. my mistakes). > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-DB] Help... PostgreSQL on Windows 98!

2003-07-20 Thread bruno
Hi, I'm trying to use PostgreSQL on Windows98! Does anyone here succeded with it? Thanks Bruno (sorry.. my mistakes).

[PHP-DB] HELP PLEEASSSEE

2003-06-30 Thread Nabil
I have a form like: . . while($row = mysql_fetch_array($result)) { ?> > http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread nabil
could you help for that .?? "Martin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You are entirely wrong about ODBC. Linux has several implementations available. > > > On Sat, 14 Jun 2003 14:30:42 +0300 > "nabil" <[EMAIL PROTECTED]> wrote: > > > PLEASE HELP ME PHP PEOPLE, > >

Re: [PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread Martin
You are entirely wrong about ODBC. Linux has several implementations available. On Sat, 14 Jun 2003 14:30:42 +0300 "nabil" <[EMAIL PROTECTED]> wrote: > PLEASE HELP ME PHP PEOPLE, > > I have a stored procedure on a remote Microsoft (stupid) SQL server.. > and I have to connect to it remotely and

[PHP-DB] HELP, MSSQL STORED PROCEDURES

2003-06-14 Thread nabil
PLEASE HELP ME PHP PEOPLE, I have a stored procedure on a remote Microsoft (stupid) SQL server.. and I have to connect to it remotely and I have only permission to execute those specific procedure , and I only got the returned value... My server that I will connect from is Linux, apache with MySQ

Re: [PHP-DB] HELP, Still not be able to connect to MySQL

2003-06-12 Thread Doug Thompson
Your IP users have no permissions. (Hint: N = No) How is this a PHP problem? (Hint: It is all over the mysql list archives.) Doug On Thu, 12 Jun 2003 13:35:21 +0300, nabil wrote: >GUYS help me please. >1- mysql server in on my own machine.. >2- my machine IP is 192.168.0.1 >3- when i tired

[PHP-DB] HELP, Still not be able to connect to MySQL

2003-06-12 Thread nabil
GUYS help me please. 1- mysql server in on my own machine.. 2- my machine IP is 192.168.0.1 3- when i tired to connect as localhost, i managed to query. 4- if i tried to to connect using my IP i got "no database found"... 5- i tried to use mysql_error() ... and it is not an authentication problem a

RE: [PHP-DB] Help Please!! Oracle/PHP connection

2003-06-11 Thread Ford, Mike [LSS]
> -Original Message- > From: Matthew Moldvan [mailto:[EMAIL PROTECTED] > Sent: 11 June 2003 01:03 > > Have you tried the built in Oracle functions in PHP? > > http://us3.php.net/oracle That's only for Oracle up to version 7. For Oracle 8 or 9, use the OCI extension http://www.php.net/oc

RE: [PHP-DB] Help Please!! Oracle/PHP connection

2003-06-10 Thread Matthew Moldvan
PROTECTED] Subject: [PHP-DB] Help Please!! Oracle/PHP connection Hey guys, I would really appriciate it if someone can direct me with this problem. On my laptop I have: Windows XP Professional, Oracle 9i Database, Oracle Client Software, PHP4.3.1, and Apache server. PHP and Apache work fine

[PHP-DB] Help Please!! Oracle/PHP connection

2003-06-10 Thread Y Al Hinai
Hey guys, I would really appriciate it if someone can direct me with this problem. On my laptop I have: Windows XP Professional, Oracle 9i Database, Oracle Client Software, PHP4.3.1, and Apache server. PHP and Apache work fine. Oracle i9 by itslef works fine too. However when i tried to

[PHP-DB] Help with oci dll in PHP

2003-06-04 Thread Philippe Saladin
A guy, Filippov Evgeny, mails directly to me with the following question. I answer in this group, to share the problem and the solution. Philippe S. From: evgeny Hi! Excuse please, I have seen your answers and has decided(solved) t

Re: [PHP-DB] HELP HELP HELP SELECT not work

2003-04-05 Thread Leif K-Brooks
My psychic powers are a bit out of tune, but I think the problem is on line 35 of your code. [EMAIL PROTECTED] wrote: My PHP scripts don't execute the SELECT queries after execute the first. My web execute PHP scripts for work with MYSQL, all on Apache webserver. PHP version: 4.1.2 MySQL vers

[PHP-DB] HELP HELP HELP SELECT not work

2003-04-05 Thread user
My PHP scripts don't execute the SELECT queries after execute the first. My web execute PHP scripts for work with MYSQL, all on Apache webserver. PHP version: 4.1.2 MySQL version: 3.22.32 The queries executed directly in MYSQL works. Where is the problem? These scripts run well for more times

Re: [PHP-DB] help, please

2003-03-31 Thread Hendri
003 07:57:38 -0600 Subject: [PHP-DB] help, please Hi all I'm new with php. I need connect with my db in oracle7.3.3, and doing it: But not work. thank's and regards -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] help, please

2003-03-31 Thread Marcial Comerón Mariño
Hi all I'm new with php. I need connect with my db in oracle7.3.3, and doing it: But not work. thank's and regards

Re: [PHP-DB] help me..!

2003-03-24 Thread ps_jkt
wahyu" <[EMAIL PROTECTED]To: <[EMAIL PROTECTED]> il.com> cc: Subj

[PHP-DB] help me..!

2003-03-24 Thread muhammad_wahyu
dear all, I'm a new user for PHP programing,I'm confused with syntax in those script.So I want all of you can help me.friend i need 1.Example of PHP (guest book,e-commerce,db with PHP,etc) Thank's all akhi wahyu -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP-DB] Help with a query please

2003-03-24 Thread heilo
Hi! I hope, I understood you right: You want to delete a user completely from your database? If yes, you can just do it step by step (I hope the last step - putting all the queries together works): $uid = 1; $qry = 'SELECT `Allocation_ID` FROM `WMS_Allocations` WHERE `User_ID`='.$uid; $ent = mys

[PHP-DB] Help with a query please

2003-03-24 Thread shaun
Hi, I have the following table structure, as my installation of MySQL doesnt support Foreign keys i have to maintain the referential integrity myself. So if i delete a user, how can i make sure that the allocations from the allocations table where the user_id is the same as the one being deleted a

[PHP-DB] Help with this query

2003-03-21 Thread shaun
Hi, I have the following tables in my database: CREATE TABLE WMS_Allocations ( Allocation_ID int(11) DEFAULT '' NOT NULL auto_increment, Project_ID int(11) DEFAULT '0' NOT NULL , User_ID int(11) DEFAULT '0' NOT NULL , PRIMARY KEY (Allocation_ID), ); CREATE TABLE WMS_Projects ( Proje

RE: [PHP-DB] Help with Parse error

2003-03-13 Thread Neil Lathwood
Michelle Whelan wrote: > Does someone know why I am getting this error? $Yards = > $_POST["needdirtype"] is line 45 > > Parse error: parse error in /havedirt2.php on line 45 You seem to be missing the ; from each line. Neil -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP-DB] Help with Parse error

2003-03-13 Thread Michelle Whelan
Does someone know why I am getting this error? $Yards = $_POST["needdirtype"] is line 45 Parse error: parse error in /havedirt2.php on line 45 $DirtType = $_POST["needdirtype"] $Yards = $_POST["noyards"] $Contact = $_POST["contactname"] $Area = $_POST["areacode"] $Prefix = $_POST["prefix"] $S

[PHP-DB] Help with file upload

2003-03-10 Thread Ahmed Shams
I am trying to upload a file but the problem i am having is that i get no value if i used $HTTP_POST_FILES['userfile']['name'] i have my register globals on and everything but i just can't see what am i doing wrong. here is my code: /* -$dir = ".\Apache\htdoc\ "; -$dir .= $_POST['img1'];

Re: [PHP-DB] Help with a query

2003-03-07 Thread Ignatius Reilly
Message - From: "Corne' Cornelius" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 07, 2003 9:00 AM Subject: Re: [PHP-DB] Help with a query > Why not use: > > SELECT a.item_id, a.subtotal, a.quantity >FROM shopping_cart a, orders b &g

Re: [PHP-DB] Help with a query

2003-03-06 Thread Corne' Cornelius
Why not use: SELECT a.item_id, a.subtotal, a.quantity FROM shopping_cart a, orders b WHERE b.session_id = session_id() AND b.customer_id = $customer_id AND a.order_id = b.border_id ? !Exclude Disclaimer! Jonathan Villa wrote: >I can't figure this query out. > >I want to pull data from

RE: [PHP-DB] Help with MySQL Logic

2003-03-04 Thread Rankin, Randy
3 10:30 AM > To: Rankin, Randy; [EMAIL PROTECTED] > Subject: Re: [PHP-DB] Help with MySQL Logic > > > A client of mine, a rail car storage company, has asked that I create a > > PHP/MySQL application in which they will maintain and track rail cars. I > am > > havin

RE: [PHP-DB] Help with MySQL Logic

2003-03-03 Thread Hutchins, Richard
andy Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Help with MySQL Logic Heh. Sounds like a programming class homework project. I would say through the clever use of where clauses's, like: UPDATE position SET posistion = (position-1) WHERE position > $idremoved; Would work, assuming $idr

Re: [PHP-DB] Help with MySQL Logic

2003-03-03 Thread bbonkosk
What about two tables, one would have this: carID carCompany carPayload etc... the second this: position carID This table would be static and if a car was not present in certain conditions they would contain (-1) for the carID. Then finding an empty slot to place an incoming car should be doab

Re: [PHP-DB] Help with MySQL Logic

2003-03-03 Thread 1LT John W. Holmes
> A client of mine, a rail car storage company, has asked that I create a > PHP/MySQL application in which they will maintain and track rail cars. I am > having a bit of trouble however working through one of thier requirements. > They need to know in what position the rail car is on each track. Fo

Re: [PHP-DB] Help with MySQL Logic

2003-03-03 Thread Adam Voigt
Heh. Sounds like a programming class homework project. I would say through the clever use of where clauses's, like: UPDATE position SET posistion = (position-1) WHERE position > $idremoved; Would work, assuming $idremoved containted the position of the car removed. On Mon, 2003-03-03

RE: [PHP-DB] Help with a query

2003-03-03 Thread Jonathan Villa
ch is what I wanted to avoid, but I guess there's no other way Thanks for the quick reply. ---> Jonathan -Original Message- From: Paul Burney [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:06 AM To: [EMAIL PROTECTED]; PHP Database List Subject: Re: [PHP-DB] Help

Re: [PHP-DB] Help with a query

2003-03-03 Thread Paul Burney
on 3/31/03 10:41 AM, Jonathan Villa at [EMAIL PROTECTED] appended the following bits to my mbox: > I want to pull data from 2 tables but using a primary key from one. > > Here is what I think it should look like. > > SELECT item_id, subtotal, quantity from shopping_cart WHERE order_id = > (SELEC

[PHP-DB] Help with MySQL Logic

2003-03-03 Thread Rankin, Randy
Hello All, This may be a bit off topic. If so, my apololgies. A client of mine, a rail car storage company, has asked that I create a PHP/MySQL application in which they will maintain and track rail cars. I am having a bit of trouble however working through one of thier requirements. They need t

[PHP-DB] Help with a query

2003-03-03 Thread Jonathan Villa
I can't figure this query out. I want to pull data from 2 tables but using a primary key from one. Here is what I think it should look like. SELECT item_id, subtotal, quantity from shopping_cart WHERE order_id = (SELECT order_id FROM orders WHERE session_id = session_id()) AND customer_id = $cu

RE: [PHP-DB] help about session

2003-02-27 Thread John W. Holmes
>i can't start session under incule row > ex: include("file.php"); > start_session(); > > it say : can't add header header already sent by...v > > somebody can help me? You can't have any output before session_start(). Call it first in your file or fix where you have output. The er

Re: [PHP-DB] help about session

2003-02-27 Thread Tatang Widyanto
Put start_session() statement on first line of your code - Original Message - From: "do khac duy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 27, 2003 13:31 Subject: [PHP-DB] help about session >i can't start session under incu

[PHP-DB] help about session

2003-02-26 Thread do khac duy
i can't start session under incule row ex: include("file.php"); start_session(); it say : can't add header header already sent by...v somebody can help me? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Help for list selection

2003-02-24 Thread Roland Perez
I am very new to PHP. I have a survey to do and I would like to have most of the questions selected from drop down lists. I have got the part of creating a list made from a table in MySQL. Currently I open the connection and get the table for the question for every question in the survey. This seem

Re: [PHP-DB] Help with ADDUSER from linux

2003-02-18 Thread Squirrel User
adduser script is written in perl. You can easily disect it. Quoting Bruno Pereira <[EMAIL PROTECTED]>: > How can i create a new user, with linux, apache and php? > Like this, in a form i ask for the username and password, than somehow use > the 'adduser' . > Can someone help me? > > > Cumpr

[PHP-DB] Help with ADDUSER from linux

2003-02-18 Thread Bruno Pereira
How can i create a new user, with linux, apache and php? Like this, in a form i ask for the username and password, than somehow use the 'adduser' . Can someone help me? Cumprimentos Bruno Pereira [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: ht

[PHP-DB] Help with array

2003-02-16 Thread John Thorne
Hello Working with jpGraph Gnatt Graph Sample gnatt files shows data array as follows: $data = array( array(0,"Concept","2002-9-1","2002-9-15",blue), array(1,"Creative","2002-9-15","2002-9-30",red), array(2,"Produce","2002-9-31","2002-10-10",green)): Output $data looks like this: 0: 0 1: Concept 2

[PHP-DB] help with loop and query

2003-02-07 Thread Aaron Wolski
Hi guys, Hopefully last time I need to call of you people for this report I am creating. In this report there is a multiple select box like:   Province/State   Alaska   Alberta   British Columbia   California   Colorado   Connecticut Usi

Re: [PHP-DB] Help with select box - multiple...

2003-02-05 Thread Jeffrey_N_Dyke
"Aaron Wolski" kbiz.com>cc:

[PHP-DB] Help with select box - multiple...

2003-02-05 Thread Aaron Wolski
Hi All, Sorry to be a pain on this one as it is sorta off topic.. but any help would be awesome. I'm creating a report for Product Popularity in which the Admin is present with a form and they have the ability to select A product or multiple products from a drop down combo box. The form is su

[PHP-DB] HELP, sendmail + mysql.

2003-02-04 Thread Bruno Pereira
Hi, need some help. i will try to explain my self. I have a sendmail in GNU/linux, and a radiator GNU/Linux with Mysql. I have to give a diferente user for de dialup login and the sendmail, cause i can't or i dont know a way to change the user and pass for the user in the two servers. Like this, th

RE: [PHP-DB] Help!

2003-02-04 Thread Hutchins, Richard
Have you correctly updated you web server's .ini file to point to the PHP installation according to the PHP installation instructions? > -Original Message- > From: Tomas Liendo [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 03, 2003 10:29 PM > To: [EMAIL PROTECTED] &

Re: [PHP-DB] Help!

2003-02-03 Thread Jason Wong
On Tuesday 04 February 2003 11:29, Tomás Liendo wrote: > Hello I'm a beginner, I'm reading the PHP's manual but I can't test the > examples because always receipt the following error message: > > Call to undefined funciont: > > I can't understand why! Please help... :-( 1) Please use a descriptive

[PHP-DB] Help!

2003-02-03 Thread Tomás Liendo
Hello I'm a beginner, I'm reading the PHP's manual but I can't test the examples because always receipt the following error message: Call to undefined funciont: I can't understand why! Please help... :-( Thank you very much, Tom. -- PHP Database Mailing List (http://www.php.net/) To unsubsc

Re: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-28 Thread Rajesh Fowkar
On Tue, Jan 28, 2003 at 10:44:47PM +0100, Geckodeep wrote: >Hi Rajesh > > > >First of all I'd like to thank you for your time. No hassles. > >I got the script working in a way that it feeds my DB table, but I am >getting this error message: Warning: copy() [function.copy]: Unable to >access in u

Re: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-28 Thread Geckodeep
Hi Rajesh First of all I'd like to thank you for your time. I got the script working in a way that it feeds my DB table, but I am getting this error message: Warning: copy() [function.copy]: Unable to access in upload1.php on line 28. this is what I have in the 28th line : if(!copy($_FILES['im

Re: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-28 Thread Geckodeep
Hi Rajesh First of all I'd like to thank you for your time. I got the script working in a way that it feeds my DB table, but I am getting this error message: Warning: copy() [function.copy]: Unable to access in upload1.php on line 28. this is what I have in the 28th line : if(!copy($_FILES['im

RE: [PHP-DB] Help with converting data type from Database in PHP

2003-01-28 Thread SELPH,JASON (HP-Richardson,ex1)
-DB] Help with converting data type from Database in PHP Has anyone done 16-bit integer conversion to decimal in PHP or know the formula to convert the data. Below is an example of what oracle gives me and what I need to convert it to. Any help would be greatly appreciated. Thanks, Robert I

[PHP-DB] Help with converting data type from Database in PHP

2003-01-28 Thread Robert Trembath
Has anyone done 16-bit integer conversion to decimal in PHP or know the formula to convert the data. Below is an example of what oracle gives me and what I need to convert it to. Any help would be greatly appreciated. Thanks, Robert I get this in unsigned 16-bit Integer format: AACBAACBAACDAA

Re: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-27 Thread Rajesh Fowkar
On Mon, Jan 27, 2003 at 05:05:02PM +0100, Geckodeep wrote: >Hi, > >Can any one guide me through the uploading file procedure please? >Should I use copy() function to copy the image file to a temp file and >rename it to the real name and then reference the name in the data base. >Or is there any ot

Re: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-27 Thread Geckodeep
Hi John I've just got that from browsing through the net. I am in the middle of figuring it out how to implement it. If I have any more questions I'll post it on the forum. For time being thanks for your advice. GD "John W. Holmes" <[EMAIL PROTECTED]> wrote in message 000201c2c628$a8f0f3b0$7c02

RE: [PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-27 Thread John W. Holmes
> Can any one guide me through the uploading file procedure please? > Should I use copy() function to copy the image file to a temp file and > rename it to the real name and then reference the name in the data base. > Or is there any other way. > Should say though my Service Provider does not suppo

[PHP-DB] Help/Advice/Suggestions need to Upload 9 images on one submit button.

2003-01-27 Thread Geckodeep
Hi, Can any one guide me through the uploading file procedure please? Should I use copy() function to copy the image file to a temp file and rename it to the real name and then reference the name in the data base. Or is there any other way. Should say though my Service Provider does not support ex

Re: [PHP-DB] Help with MySQL

2003-01-19 Thread leo g. divinagracia iii
Rodrigo Corrêa wrote: I´m new with MySQL, i´m just wondering if there is a way to get the IP from a MySQL Server, since i acess this by localhost in the webserver even if you could, the MYSQL admin probably set your account to access your data with a LOCALHOST permission only... so if you

RE: [PHP-DB] help me

2003-01-09 Thread Snijders, Mark
] Subject: [PHP-DB] help me i can't use start_secsion(); in php4, it say: error : can't ofen(\tmp/4363jghsfjkhshga.. like this... -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] help me

2003-01-09 Thread rblack
"khac duy" netnam.vn> cc: Subjec

Re: [PHP-DB] help me

2003-01-09 Thread Martin Hudec
Hello khac, hmm what platform are you running on? what are PHP settings for writing sessions? Check out permissions for /tmp directory, check out free space on disk. -- Best regards, Martin mail [EMAIL PROTECTED] mobile +421.907.30

[PHP-DB] help me

2003-01-09 Thread khac duy
i can't use start_secsion(); in php4, it say: error : can't ofen(\tmp/4363jghsfjkhshga.. like this...

RE: [PHP-DB] Help with date....

2003-01-07 Thread SELPH,JASON (HP-Richardson,ex1)
nal Message- From: Rodrigo Corrêa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 8:58 AM To: PHP1 Subject: [PHP-DB] Help with date How can i find out the day of the week in one date?? like => 07/01/2002 the day of the week is " 3 " thurday like => 18/01/2

Re: [PHP-DB] Help with date....

2003-01-07 Thread Ignatius Reilly
ED]> To: "PHP1" <[EMAIL PROTECTED]> Sent: Tuesday, January 07, 2003 3:57 PM Subject: [PHP-DB] Help with date How can i find out the day of the week in one date?? like => 07/01/2002 the day of the week is " 3 " thurday like => 18/01/2

[PHP-DB] Help with date....

2003-01-07 Thread Rodrigo Corrêa
How can i find out the day of the week in one date?? like => 07/01/2002 the day of the week is " 3 " thurday like => 18/01/2002 the day of the week is " 6 " saturday is there a way to do that? Equipe P

RE: [PHP-DB] Help about printing an integer variable

2003-01-06 Thread Lukas Smith
> -Original Message- > From: Andrey Hristov [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 06, 2003 5:07 PM > To: Martín Agüero; [EMAIL PROTECTED] > Subject: Re: [PHP-DB] Help about printing an integer variable > > something like > > printf(&qu

Re: [PHP-DB] Help about printing an integer variable

2003-01-06 Thread Andrey Hristov
something like printf("%+4d", $int_var); Andrey - Original Message - From: "Martín Agüero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 06, 2003 4:52 PM Subject: [PHP-DB] Help about printing an integer variable I need to print an i

Re: [PHP-DB] Help about printing an integer variable

2003-01-06 Thread 1LT John W. Holmes
You can specify a padding character and length with printf www.php.net/printf ---John Holmes... - Original Message - From: "Martín Agüero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 06, 2003 9:52 AM Subject: [PHP-DB] Help about printing a

[PHP-DB] Help about printing an integer variable

2003-01-06 Thread Martín Agüero
I need to print an integer varible using this format '', I mean it always have to show four digits. How can I do that? Thanks, Martin.

[PHP-DB] Help with MySQL

2002-12-30 Thread Rodrigo Corrêa
I´m new with MySQL, i´m just wondering if there is a way to get the IP from a MySQL Server, since i acess this by localhost in the webserver Equipe Pratic Sistemas Rodrigo Corrêa Fone: (

Re: [PHP-DB] Help with FTP

2002-12-27 Thread Adam Williams
use system() to run /bin/df depending on the OS you might need to add a flag to it like -h (linux) or -k (solaris). www.php.net/system Adam On Fri, 27 Dec 2002, Dankshit wrote: > Is there a way to see how much space is left in a ftp server? > > thanks in advance! > --

[PHP-DB] Help with FTP

2002-12-27 Thread Dankshit
Is there a way to see how much space is left in a ftp server? thanks in advance!

RE: [PHP-DB] Help Needed

2002-12-26 Thread dufronte
ubject: Re: [PHP-DB] Help Needed At 02:36 PM 12/26/02 +0700, dufronte wrote: > >Hi. >I juz installed a RedHat 8.0 on my machine. >But then I have a problem in configuring Apache 2.0.4 to use PHP 4.20.. Apache 2 and PHP are not ready for prime time. If you must use Apache 2 wi

Re: [PHP-DB] Help Needed

2002-12-26 Thread Rick Widmer
At 02:36 PM 12/26/02 +0700, dufronte wrote: Hi. I juz installed a RedHat 8.0 on my machine. But then I have a problem in configuring Apache 2.0.4 to use PHP 4.20.. Apache 2 and PHP are not ready for prime time. If you must use Apache 2 with PHP, you are on the bleeding edge, and should plan o

Re: [PHP-DB] Help Needed

2002-12-26 Thread 1LT John W. Holmes
> Everything's perfect.. except my browser keep blank when I run my php > files... No, obviously it's not perfect because it's not working at all. Your page is blank because will be evaluated as an unknown HTML tag and come out blank. Find another tutorial that discusses how to set up what you w

RE: [PHP-DB] Help Needed

2002-12-26 Thread dufronte
Everything's perfect.. except my browser keep blank when I run my php files... --www.kapsul.org-- DuFronte -Original Message- From: adi setiawan [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 5:00 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Help Needed --

Re: [PHP-DB] Help Needed

2002-12-26 Thread adi setiawan
-- pada 2002-12-26, 14:36:00 [EMAIL PROTECTED] menulis: -- > >Hi. >I juz installed a RedHat 8.0 on my machine. >But then I have a problem in configuring Apache 2.0.4 to use PHP 4.20.. >It's preety weird.. coz there's nothing shown up in the browser when I >run phpinfo(); or even a simple 'hellow

[PHP-DB] Help Needed

2002-12-25 Thread dufronte
Hi. I juz installed a RedHat 8.0 on my machine. But then I have a problem in configuring Apache 2.0.4 to use PHP 4.20.. It's preety weird.. coz there's nothing shown up in the browser when I run phpinfo(); or even a simple 'helloworld' code. When I view the source by right-clicking.. it shows th

Re: [PHP-DB] Help with connecting PHP/MySQL to MS Outlook

2002-12-19 Thread DL Neil
Chris, > Does anyone know of a way to retrieve MS Outlook data via PHP? I am creating > an intrant for my company and want to grab data from the MS Oulook contact > list on the server to using in my PHP/MySQL intranet project. > > Any help would be most appreciated. Rather than using PHP to go '

[PHP-DB] Help with connecting PHP/MySQL to MS Outlook

2002-12-18 Thread Chris Streeter
Does anyone know of a way to retrieve MS Outlook data via PHP? I am creating an intrant for my company and want to grab data from the MS Oulook contact list on the server to using in my PHP/MySQL intranet project. Any help would be most appreciated. Thank you! Chris Streeter Bethlehem, PA USA

Re: [PHP-DB] HELP!! Warning: mysql_pconnect:

2002-12-13 Thread John Krewson
Try mysql_connect instead. Doesn't sound as if you are at the stage at which you would realize any gains from a persistent connection. I've just seen a lot of comments regarding strange happenings with pconnect - which I have no doubt will be addressed later. Don Briggs wrote: While viewin

[PHP-DB] HELP!! Warning: mysql_pconnect:

2002-12-12 Thread Don Briggs
While viewing web pages, we sometimes get the following error: "Warning: mysql_pconnect: Link to server lost, unable to reconnect in /home/dratner/includes/common.inc on line 26 ". The offending line is this code: if (!$db = mysql_pconnect("db1", "diadba", "c0s3mST"

[PHP-DB] Help on MySql Relational Tables

2002-12-12 Thread Phanivas Vemuri
hi all, I have two tables. 1.ProgramClips ( id, progSummary, category, videoFile)PRIMkey = id. and each id may have 2 or three categories. 2.Category( number,category). categories are : Beef , diary, horticulture etc; I am using PhpMyAdmin as the interface for the mySql Database. The PhpMyAdmin c

Re: [PHP-DB] Help please

2002-12-11 Thread Michal Stankoviansky
>From original msg: >> I need to be able to do is increment an mysql database field each time an DN> =possibly an AUTO_INCREMENT field is what is needed here Is that what he has been trying to do? I think SpiderWebb needed to see how many pieces of the item were sold, didnt'he? So let's say he's

Re: [PHP-DB] Help nedded

2002-12-10 Thread Mark
You might read the database to see how many have been sold previously and put that into a PHP variable. Add the amount that you'd be incrementing it by (I assume it's possible that it will increment by more than one at a time), determine the price point, and then update the row with both the new am

[PHP-DB] Help nedded

2002-12-10 Thread SpiderWebb
I dont know if this is possible in PHP (Newbie) im working on a project where each product has 3 diffierent prices depending on the amount sold so say for example 1- 100 price A 101-299 price B and above 300 Price C. What I need to be able to do is increment an mysql database field each time an it

Re: [PHP-DB] Help please

2002-12-10 Thread DL Neil
SpiderWebb, One posting to one list is enough... > I dont know if this is possible in PHP (Newbie) im working on a project > where each product has 3 diffierent prices depending on the amount sold so > say for example 1- 100 price A 101-299 price B and above 300 Price C. What > I need to be able t

[PHP-DB] Help please

2002-12-10 Thread SpiderWebb
From: "SpiderWebb" <[EMAIL PROTECTED]> Subject: Help nedded Date: 09 December 2002 16:46 I dont know if this is possible in PHP (Newbie) im working on a project where each product has 3 diffierent prices depending on the amount sold so say for example 1- 100 price A 101-299 price B and above 300 P

Re: [PHP-DB] Help with date

2002-11-28 Thread Ignatius Reilly
D]> Sent: Thursday, November 28, 2002 6:06 PM Subject: [PHP-DB] Help with date How can i add days to a date?? Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL P

<    1   2   3   4   5   6   7   >