[PHP] PHP Upgrade

2002-10-15 Thread Ramesh Nagendra Pillai
Hai all I am using Apache/PHP4.0.1/PostgreSQL, I had upgraded PHP to PHP.4.2.3, now My problem is none of my PostgreSQL function are working and also the server variables(e.g $REQUEST_METHOD..)also, Can any one please help me out to fix this problem. This is the first time I have upgraded my

RE: [PHP] People who searched this also searched this!

2002-10-15 Thread Simon Taylor
This sounds a lot harder than it is, all you have to do is first of all make some space ion your db then you need to cache searches that users have done. Store the group of searches for unique users, then if someone does a search match it against the cache and pop up all items which were

[PHP] Getting the highest number in a column

2002-10-15 Thread Phil Schwarzmann
Using PHP and a MySQL database, I want to grab the highest number in a particular column. Right now I have this VERY inefficient code to grab this number, there's got to be a better way. Does anyone have any ideas?? Thanks!

[PHP] if conditional

2002-10-15 Thread Muhammad Khairuzzaman
Hello, I would like to how to know how to create an if conditional with only one condition. Can some one tell me the way to do this. This is my previos code : if (!name) { print Pplease enter your name.; } exit; if (!$email) { print PPlease enter you e-mail } exit; ? -- PHP General

RE: [PHP] Getting the highest number in a column

2002-10-15 Thread Simon Taylor
select MAX(colname) from table; Cheers Simon -Original Message- From: Phil Schwarzmann [mailto:[EMAIL PROTECTED]] Sent: 15 October 2002 09:29 To: [EMAIL PROTECTED] Subject: [PHP] Getting the highest number in a column Using PHP and a MySQL database, I want to grab the highest number

[PHP] Shipping problem...

2002-10-15 Thread Steve Jackson
Hi all, I have a problem which I'm not sure the best way to go about. We will be shipping products based on weight and I have two types of product with differing weights. Basically we want to charge one price for shipping less than 10 KG and one for anything over that. I wonder how to go about

RE: [PHP] Getting the highest number in a column

2002-10-15 Thread David Freeman
Using PHP and a MySQL database, I want to grab the highest number in a particular column. As is usual for questions like this, the answer is most likely that you should do it in your sql query. In this case, something like this would probably do it: SELECT MAX(some_column) FROM

Re: [PHP] PHP Upgrade

2002-10-15 Thread Chris Hewitt
Ramesh Nagendra Pillai wrote: I am using Apache/PHP4.0.1/PostgreSQL, I had upgraded PHP to PHP.4.2.3, now My problem is none of my register_globals now defaults to off. I think this may be your problem. HTH Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] preg_grep

2002-10-15 Thread Mark Harwood
Hi All, I've written a inifile class and was trying to improve it but got stuck trying to read all the sections: [Section 1] name=value [Section 2] name=value $Inifile is the inifile read into an array but the following doesn't work: $Sections = preg_grep(/(?=^\[)([^\[\]]+)(?=\]$)/i,

Re: [PHP] Shipping problem...

2002-10-15 Thread Jason Wong
On Tuesday 15 October 2002 15:35, Steve Jackson wrote: Hi all, I have a problem which I'm not sure the best way to go about. We will be shipping products based on weight and I have two types of product with differing weights. Basically we want to charge one price for shipping less than 10

[PHP] Code management

2002-10-15 Thread José León Serna
Hello, I would like to hear your experience about this matter: I have a lot of separate scripts and most of them need another script, for example: phpgrid uses adodb uses ldap_rol phplogin uses ldap_rol And so on, I have a CVS server to store/develop single scripts, but I want to

Re: [PHP] Inserting a variable into a mysql_query() statement

2002-10-15 Thread Jason Wong
On Tuesday 15 October 2002 12:54, Phil Clark wrote: I'm trying to insert the variable $hidden_manuf_id into a mysql_query() statement. If i do this: mysql_query(DELETE FROM product WHERE manufacturer=$hidden_manuf_id,$bb) or die(mysql_error()); That should work iff manufacturer is a

Re: [PHP] Argh! nulls un stuff..

2002-10-15 Thread Francis
i think that was one of the problems, some places the session var was set back as a string (0) and other as int (0). anyway thanks to all, panic over all working now :) Jason Young [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... My suggestion would be to checck

[PHP] Content-Disposition IE bug

2002-10-15 Thread Francis
ok i know this has popped up a couple of times before but i'm still having problems. What I need is the download popup to popup and ask the user if they wish to save or open the file they want to download. If you click open IE saves the file in your temp cache and then opens up the associated

Re: [PHP] if conditional

2002-10-15 Thread Maxim Maletsky
You confused us. Would you like to explain us exactly what you meant? Maybe with mentioning us your reasons/goals. -- Maxim Maletsky [EMAIL PROTECTED] www.PHPBeginner.com // where PHP Begins On Tue, 15 Oct 2002 15:31:14 +0800 Muhammad Khairuzzaman [EMAIL PROTECTED] wrote: Hello, I

Re: [PHP] if conditional

2002-10-15 Thread Bob Irwin
If the code isn't working, its because you weren't using a $name in the first if statement. Always the little things ! :) But this should work... if (!$name) { print Pplease enter your name.; } if (!$email) { print PPlease enter you e-mail; } Hello, I would like to how to know

[PHP] include http

2002-10-15 Thread Dan Healy
Hi, I wrote a program to authenticate users. I would like to place a few lines at the top a webpage that would call this program. Some web pages will be on the same server as the authentication program, others will not. Can I use include/require of do I need to use fopen? The program

Re: [PHP] How to setcookie with two domains

2002-10-15 Thread Marek Kilimajer
Set two cookies, one for each domain, and update them both as well. Phil Powell wrote: Is it possible, w/o using sessionid session variables, to use setcookie to set a cookie that will have two domains or more? Just curious. I am having to set a cookie that will go to one domain and then to

[PHP] regular expression

2002-10-15 Thread Noodle Snacks
what would be a simple regular expression for a href=anythinghere? for future reference are there any good references for them? -- JJ Harrison [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include http

2002-10-15 Thread Maxim Maletsky
In order to use your PHP script (authentication features etc) you need to have the all files within the same server. As of including files, virtually - yes, yo can use include for remote files, but you will not be able to execute the remote PHP code. You will only include the output. ie:

[PHP] Re: regular expression

2002-10-15 Thread Ns_Andy
perl: preg_match '/a\s*href/s*=/s*[\']?[^\']+[\']?/i' or eregi 'a[ ]*href[ ]*=[ ]*[\']?[^\']+[\']?' -- Regards, Noodle Snacks [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... what would be a simple regular expression for a href=anythinghere? for future

[PHP] Re: regular expression

2002-10-15 Thread Noodle Snacks
Thanks. Ns_andy [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... perl: preg_match '/a\s*href/s*=/s*[\']?[^\']+[\']?/i' or eregi 'a[ ]*href[ ]*=[ ]*[\']?[^\']+[\']?' -- Regards, Noodle Snacks [EMAIL PROTECTED] wrote in message [EMAIL

Re: [PHP] php mail()

2002-10-15 Thread Juhan Kundla
Ühel ilusal päeval [14-10-2002 22:46] kirjutas John W. Holmes: Hey do you guys know how to correct this problem with sending email? A custumer uses mail() to send the email and it isn't deliverable. So the message bounces. But since the local sendmail sent the email it thus bounces

RE: [PHP] PHP Upgrade

2002-10-15 Thread Simon Taylor
Ramesh, Since php 4.2.0 register_globals is always set off - look in your php.ini Cheers Simon -Original Message- From: Ramesh Nagendra Pillai [mailto:[EMAIL PROTECTED]] Sent: 15 October 2002 08:30 To: [EMAIL PROTECTED] Subject: [PHP] PHP Upgrade Hai all I am using

[PHP] lynx and crontab

2002-10-15 Thread adrian murphy
my isp lets me control crontab so i've been trying to run a php script every 30 mins. the command is like this: lynx - dump http://www.mysite.com/test.php which gives the error lynx: Start file could not be found or is not text/html or text/plain what do i telll my isp to do to get lynx to

RE: [PHP] lynx and crontab

2002-10-15 Thread Jon Haworth
Hi Adrian, the command is like this: lynx - dump http://www.mysite.com/test.php which gives the error lynx: Start file could not be found or is not text/html or text/plain Try losing the space between the - and dump: it should be something like lynx -dump

Re: [PHP] Content-Disposition IE bug

2002-10-15 Thread Aaron Gould
I remember reading on this a long while back. Try searching the archives of this list. The solution pointed to a Microsoft Knowledge Base article. If I recall correctly, it involved simply adding %20 to the end of your filename string... Something like this: Header(Content-Disposition:

php-general Digest 15 Oct 2002 12:30:45 -0000 Issue 1645

2002-10-15 Thread php-general-digest-help
php-general Digest 15 Oct 2002 12:30:45 - Issue 1645 Topics (messages 119971 through 120010): Re: two submit buttons redirecting to two scripts 119971 by: Peter Houchin 119975 by: Sonal Patel Re: passing mysql_error() out put to a different page? 119972 by: Brad

Re: [PHP] lynx and crontab

2002-10-15 Thread Steve Buehler
Info: Lynx has nothing to do with supporting or not supporting PHP. PHP is not a client side language, it is a server side language, so the browser that you use does not even know or need to know that it is running PHP. Solutions (hopefully): Take out the space between the - and the word

Re: [PHP] Content-Disposition IE bug (ADDENDUM)

2002-10-15 Thread Aaron Gould
I just read the part about caching... Here's the download code that works perfectly for me. Note the first line that deals with caching. The last line also has the filename in quotes. That might make a difference. If you still get [1], try the %20 trick in my last post.

Re: [PHP] lynx and crontab

2002-10-15 Thread Marek Kilimajer
shouldn't be it lynx -dump ... ? adrian murphy wrote: my isp lets me control crontab so i've been trying to run a php script every 30 mins. the command is like this: lynx - dump http://www.mysite.com/test.php which gives the error lynx: Start file could not be found or is not text/html or

RE: [PHP] passing mysql_error() out put to a different page?

2002-10-15 Thread John W. Holmes
Get rid of your die(). $res = mysql_query(...); if(!res) { $_SESSION['mysqlerror'] = mysql_error(); header(Location: error.php); exit(); } else { header(Location index.php); } ---John Holmes... -Original Message- From: Peter Houchin [mailto:[EMAIL PROTECTED]] Sent: Monday,

[PHP] Re: lynx and crontab

2002-10-15 Thread Bogdan Stancescu
The syntax I use for this purpose is either: lynx -source URL or wget -q -O - URL depending on whether lynx or wget are installed. HTH Bogdan Adrian Murphy wrote: my isp lets me control crontab so i've been trying to run a php script every 30 mins. the command is like this: lynx - dump

Re: [PHP] Content-Disposition IE bug (ADDENDUM)

2002-10-15 Thread Francis
nope still dont work :( oh well back to bashing my head against a wall and talking to microsoft :) Aaron Gould [EMAIL PROTECTED] wrote in message 012c01c27447$69e831c0$3f63a8c0@pcagould">news:012c01c27447$69e831c0$3f63a8c0@pcagould... I just read the part about caching... Here's the download

Re: [PHP] lynx and crontab

2002-10-15 Thread Jason
I have a tutorial for using lynx to monitor a firewall. http://frontiertech.ca/tutorial_web_page_monitor.php www.frontiertech.ca Free Open Source Software for Data Collection and Data Mining.

[PHP] Adding users to a linux system?

2002-10-15 Thread :: wkwrz entertainment ::
$creador = /usr/sbin/adduser -g mel -d /dev/null -s /bin/false -p $pass $usuario; $creador = exec($creador); echo $creador; I HAVE THIS, BUT IN THE APACHE LOG FILE I HAVE THIS: adduser: unable to lock password file what should i do to run the $creador sucefully? -- PHP General Mailing

Re: [PHP] Shipping problem...

2002-10-15 Thread Tim Monaghan
I have tried adding a weight category to my products table and calculating total weight (then a simple if statement would do the trick) but it leads to other problems which I couldn't de-bug. That sounds like the best idea to me, whats the big you had? Tim

Re: [PHP] Shipping problem...

2002-10-15 Thread Tim Monaghan
hehe I meant to say BUG ;) That sounds like the best idea to me, whats the big you had? Tim =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Custom Programming Web Programming community discussion http://www.inter-apps.com - Original Message - From: Steve Jackson [EMAIL PROTECTED] To:

[PHP] Re: Code management

2002-10-15 Thread Philip Hallstrom
I'd separate out your shared PHP files and put them all in a directory named say my_php_lib. Organize it like PEAR if you want... Then for each of your sites set up the directory structure something like this: /path/to/site/htdocs /path/to/site/my_php_lib where you've cvs-co'd my_php_lib.

[PHP] getting to a section of the page

2002-10-15 Thread Simon Taylor
Hi All, I need to get the action of a button to send me to a certain section of the page once it posts to the page. The button's value is the id of a field to be edited. I want to avoid using the link style link.php?id=342#bookmark Thanks for any help. Cheers

[PHP] PHP XML

2002-10-15 Thread Chris Boget
Let me preface this by saying that I know the benefits of using XML with regards to portability and extensibility. Here is the issue I face. I have all of my data stored in a MySQL database. I'm considering reworking my website so that it uses XML (after being converted from resultant records

Re: [PHP] Adding users to a linux system?

2002-10-15 Thread Shane Wright
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 you need to be root to add users - and your web server is most likely not runings as root (certainly shouldn't be!!) To make this work, add the user apache runs under to /etc/sudoers (look at the sudo man page), then change the command you have

Re: [PHP] PHP XML

2002-10-15 Thread Maxim Maletsky
Chris Boget [EMAIL PROTECTED] wrote... : Let me preface this by saying that I know the benefits of using XML with regards to portability and extensibility. Yes, there are many benefits. Here is the issue I face. I have all of my data stored in a MySQL database. I'm considering reworking

Re: [PHP] Adding users to a linux system?

2002-10-15 Thread Tim Monaghan
Is it better to use a c wrapper to do this? thats what Ive always done. Which is more secure? Tim =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Custom Programming Web Programming community discussion http://www.inter-apps.com - Original Message - From: Shane Wright [EMAIL PROTECTED] To: [EMAIL

[PHP] Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Hey yet again... I've got a 3x3 grid of type 'file' input elements, for a nifty total of 9 upload spaces.. After specifying a file in all 9, and attempting upload, I only got 5.. I noticed the total filesize was 2 megs, so I changed the php.ini to 8.. yet I still got that problem. So I

Re: [PHP] Adding users to a linux system?

2002-10-15 Thread Shane Wright
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 A C wrapper running setuid root? I guess there's less chance of getting a 'bad' username to execute arbitrary commands, but at the same time I wonder about the possiblity of exploiting overflows, but that'd be much harder. (hmm, if the C program

[PHP] Win 98 Apache - Directory style Query Strings on PHP Files without extensions

2002-10-15 Thread Andy White
Hi, I'm trying to allow my Apache webserver, on Win 98 to run PHP files without extensions. This is all working but the second part to the plan involves changing the query string into the format of a directory. e.g. Where the file is index without an extension and xxx and yyy are the sections

RE: [PHP] Win 98 Apache - Directory style Query Strings on PHP Files without extensions

2002-10-15 Thread Jon Haworth
Hi Andy, Although http://www.mysite.com/ or http://www.mysite.com/index work fine, picking up the index file okay http://www.mysite.com/xxx/yyy/ or http://www.mysite.com/index/xxx/yyy/ come back with internal server errors. Have a look into mod_rewrite, I think you'll be able to achieve

[PHP] to connect an access database,

2002-10-15 Thread Ns_Andy
which method and object should I use? and may I have some related examples? -- Regards, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] to connect an access database,

2002-10-15 Thread Jon Haworth
Hi Andy, which method and object should I use? AFAIK you have to connect over ODBC (unless PHP has grown native Access functions since I last looked). Here's a function that might be of interest: http://www.php.net/manual/en/function.odbc-connect.php and may I have some related examples?

[PHP] HTTP-authentication

2002-10-15 Thread Davy Obdam
Hiya people, I am building a admin page for a guestbook and i want more people to be able to log in. I have made a table in the database called user(gebruikers) wich keeps both a loginname(loginnaam) and password. I have 2 users in this table right now. Now i ve a problem.. I can login with the

[PHP] Session problem

2002-10-15 Thread Ferhat Can
Dear All, I have a problem and need your help. I use PHP 4.2.3, Apache 1.3.27 and a local version of Red Hat. Here is the problem: I have a web site that depends on Session, but the Session ID seems to be regnerated evertime I refresh the page. I have tried different versions of PHP with

Re: [PHP] Session problem

2002-10-15 Thread Jonathan Sharp
Sorry... session.cookie_domain in php.ini Make sure you can also write to /tmp -js Ferhat Can wrote: Dear All, I have a problem and need your help. I use PHP 4.2.3, Apache 1.3.27 and a local version of Red Hat. Here is the problem: I have a web site that depends on Session, but the

Re: [PHP] Session problem

2002-10-15 Thread Jonathan Sharp
Try setting the session.domain in your php.ini... -js Ferhat Can wrote: Dear All, I have a problem and need your help. I use PHP 4.2.3, Apache 1.3.27 and a local version of Red Hat. Here is the problem: I have a web site that depends on Session, but the Session ID seems to be regnerated

RE: [PHP] Win 98 Apache - Directory style Query Strings on PHP Files without extensions

2002-10-15 Thread Ford, Mike [LSS]
-Original Message- From: Andy White [mailto:[EMAIL PROTECTED]] Sent: 15 October 2002 16:08 To: [EMAIL PROTECTED] I'm trying to allow my Apache webserver, on Win 98 to run PHP files without extensions. Where the file is index without an extension and xxx and yyy are the

Re: [PHP] Session problem

2002-10-15 Thread Ferhat Can
Thank you for replying Jonathan, I set the session.cookie_domain in php.ini but it didn't work. I have too many session files in my /tmp directory. Everytime I refresh the page a new session file is created unfortunately. Ferhat Can - Original Message - From: Jonathan

[PHP] The hunt for PHP Developers [job applicant search]

2002-10-15 Thread Dan Hardiker
Hi, [sorry about this being kinda off topic, but hey :P if anyone knows of a more appropriate place - let me know!] I am looking for prospective employee's which a high level of PHP experiance, with an interest in learning Java in the next few months. Before I continue - the position is onsite

RE: [PHP] to connect an access database,

2002-10-15 Thread Negretti, John (CCI-San Diego)
Andy, As, Jon stated, you would need to use the built-in ODBC functions of PHP. Keep in mind that SQL Statements are NOT the same as for MySQL. There are plenty of resources on the internet that show you how to format your SQL Statements just for Microsoft Access. John Negretti Web

[PHP] Authentication: HTTP or homegrown?

2002-10-15 Thread Jackson Miller
I am curious what method of authentication is preferred by people on this list. Are you using PHP scripts for authentication and limiting access, or are you using HTTP header info. Maybe it is best to use both. For my sites I usually store user info in a database and use php and sessions to

[PHP] Re: PHP XML

2002-10-15 Thread Alexandru COSTIN
Hello, Most of what you are looking for is already implemented and fully working in our Krysalis Professional platform. We help you create dynamic XML files, we provide you reusable taglibs to avoid rewriting similar code multiple times, wr provide various levels of caching and many more.

[PHP] WYSIWYG HTML Editor

2002-10-15 Thread Chris Boget
I've gone to PHPBuilder and PHPClasses and unless I totally missed something like it (a distinct possiblity :p), does anyone know of (or have) a WYSIWYG HTML editor that you can implement in a browser? I'm curious... Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Session problem

2002-10-15 Thread Jonathan Sharp
I believe it's a cookie issue, as when I hard code in an active session: http://linuxserver.pergelcrm.com/count.php?PHPSESSID=7bf48f99e86e2d3d401c57c4f39dabbc it counts correctly. Oops! Try this... session.cookie_domain=linuxserver.pergelcrm.com NOT www.cardiologicforum.com Cheers, -js Ferhat

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Jadiel Flores
Check at cfdev.com they have a WYSIWYG editor for coldfusion and php, the name is active edit, I found this tool very useful for some sites, the price is a little bit high but you can get the source code and make some changes. At 11:46 AM 10/15/2002 -0500, Chris Boget wrote: I've gone to

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Adam Voigt
Theres a properitory Microsoft tag you can add to a frame in a frameset, which will make little virtual editor. I guess you could look on microsoft.com for it, but it doesn't work on anything but I.E. 5.5 and later I believe. Adam Voigt [EMAIL PROTECTED] On Tue, 2002-10-15 at 12:46, Chris Boget

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread @ Edwin
Well, maybe not something written in PHP. Java perhaps... - E On Wednesday, October 16, 2002 1:46 AM Chris Boget wrote: I've gone to PHPBuilder and PHPClasses and unless I totally missed something like it (a distinct possiblity :p), does anyone know of (or have) a WYSIWYG HTML editor that

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Chris Boget
Well, maybe not something written in PHP. Java perhaps... I was hoping to avoid java (though JS wouldn't be out of the question). But it looks more and more that it'll have to be. I was hoping for something fairly simple. *shrug* Chris -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Chris Boget
Check at cfdev.com they have a WYSIWYG editor for coldfusion and php, the name is active edit, I found this tool very useful for some sites, the price is a little bit high but you can get the source code and make some changes. Thanks, i'll check it out. But it requires ColdFusion to be

[PHP] show a file

2002-10-15 Thread Félix García Renedo
Hello, I have to show a file pdf in a browser but its name in the filesystem is something like name_file.file and the file is word, pdf, gif, etc I tried to do: ? $url = 'http://domain.org/path/to/file/'; $file = name_file.file; header('Content-Type:

Re: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Jadiel Flores
They have different versions of this app, one for CF, another one for php, another one for ASP, you have to buy it for php if that's what you want, personally I don't like the php version, it's a little bit difficult to install, but, because we bought the CF version I changed the code from CF

Re: [PHP] show a file

2002-10-15 Thread Kevin Stone
I may be wrong about this as I have little experience dealing with binary files. But I do not blieve that Content-Type: application/x acts like a universial content type. It seems to me that you're going to have to build in a conditional that sets the appropriate Content-Type: based on the file

RE: [PHP] WYSIWYG HTML Editor

2002-10-15 Thread Clint Tredway
Look at www.editworkspro.com I have used this one and I like it a lot and it was easy to install. -Original Message- From: Jadiel Flores [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 12:23 PM To: Chris Boget; PHP General Subject: Re: [PHP] WYSIWYG HTML Editor They have

[PHP] Help Needed

2002-10-15 Thread Pushpinder Singh Garcha
Hi I am trying to create an online survey using PHP ...I am using MySQL as the database and MAC OS Jaguar. I do not need the results to be added to the database. I need to be able to send the results of the survey to an email addressI know that this is possible using MS FrontPage but

Re: [PHP] Help Needed

2002-10-15 Thread 1LT John W. Holmes
I am trying to create an online survey using PHP ...I am using MySQL as the database and MAC OS Jaguar. I do not need the results to be added to the database. I need to be able to send the results of the survey to an email addressI know that this is possible using MS FrontPage but with

Re: [PHP] Help Needed

2002-10-15 Thread Jennifer Swofford
--- Pushpinder Singh Garcha [EMAIL PROTECTED] wrote: Hi I am trying to create an online survey using PHP ...I am using MySQL as the database and MAC OS Jaguar. I do not need the results to be added to the database. I need to be able to send the results of the survey to an email

[PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
With odbc_exec() function, it is able to execute and retrieve the data pretty well. Unfortunately, when the number of fields grow and grow then the odbc_exec() return false and a blank data. I don't get it! When I run the SQL command through the database interface, it work like a charm. So,

Re: [PHP] Help Needed

2002-10-15 Thread Chris Boget
The easiest way to do this would be to have your survey be a basic HTML page. Then use a single PHP processing page. You could just write the value of $_POST to a variable and send that in your email. $string = implode(\n,$_POST); mail($to,$subject,$string); Correct me if I'm mistaken but

RE: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Jay Blanchard
[snip] With odbc_exec() function, it is able to execute and retrieve the data pretty well. Unfortunately, when the number of fields grow and grow then the odbc_exec() return false and a blank data. I don't get it! When I run the SQL command through the database interface, it work like a charm.

RE: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Jay Blanchard
[snip] With odbc_exec() function, it is able to execute and retrieve the data pretty well. Unfortunately, when the number of fields grow and grow then the odbc_exec() return false and a blank data. I don't get it! When I run the SQL command through the database interface, it work like a charm.

Re: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
clip $database = ECBI_DB; $user = db2inst1; $pass = ibmdb2; $cid = @odbc_connect($database,$user,$pass) or die(Unable to connect to Database !!!) ; $ask = SELECT * FROM CUSTOMERS, USERS ; $ask .= WHERE CUSTOMERS.CUSTOMER_ID = '.$_POST['Customer_Id'].' AND ;

Re: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
When I try to do the two seperate SQL command with the 2nd odbc execution right after the 1st odbc execution. It work fine. Weird!! --clip-- //SQL Command #1 $ask = SELECT * FROM CUSTOMERS ; $ask .= WHERE CUSTOMERS.CUSTOMER_ID = '.$_POST['Customer_Id'].'; //SQL Command #2 $ask

RE: [PHP] Help Needed

2002-10-15 Thread Carl Brandenburg
But then you would have to rely on the end user having a working email client and working email account. Plus with submitting to a PHP script you can process and format the form to fit your exact needs. Carl -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

[PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Can't anyone help me with this? :-/ Read below... I wrote: Hey yet again... I've got a 3x3 grid of type 'file' input elements, for a nifty total of 9 upload spaces.. After specifying a file in all 9, and attempting upload, I only got 5.. I noticed the total filesize was 2 megs, so I

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Can you post the values of the post_max_size, upload_max_filesize, memory limit ini settings? ~Paul On Tuesday 15 October 2002 03:21 pm, Jason Young wrote: Can't anyone help me with this? :-/ Read below... I wrote: Hey yet again... I've

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Sure.. post_max_size = 10M upload_max_filesize = 8M memory_limit = 8M As I said before, however.. even without throwing files there, my loop test code only spits out '01234', meaning that its only looping 5 times through the code before exiting... Does file handling only allow for 5 files at

Re: [PHP] PHP XML

2002-10-15 Thread Geoff Hankerson
A few ideas: 1. I have been setting up a system to do almost exactly what you are doing (database -- xml -- xslt--html via a custom class) and have not noticed any significant performance hit, but this is not in production so your mileage may vary, but my gut feeling is the performance hit is

[PHP] Need help with HTTP-Authentication

2002-10-15 Thread Davy Obdam
Hi People,. I have a problem with HTTP-Authentication, i have 2 users in my database, and i want both to be able to login. However it works, but only the first user is able to login. I Use a MySQL 3.23.xx database, PHP 4.2.3 and Apache 2.0.40. Can anyone help me with this, any help would be

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, AFAIK, There is no limit on the amount of files that can be uploaded at once. Could you post the html code for the form? Note: The post_max_size should be larger than the upload_max_filesize the memory limit has to be larger than the

Re: [PHP] PHP XML

2002-10-15 Thread .: B i g D o g :.
Chris, Here are some ideas you might want to review these options: 1. Try storing the data in the database as xml files them selves. You then do not have to create the xml file. This will no doubt increase your database size. 2. Store your xml templates in the database for faster retrieval.

Re: [PHP] PHP XML

2002-10-15 Thread Chris Boget
Here are some ideas you might want to review these options: Other people have suggested variations of the below so I'll just respond here to cut down on the bandwidth. 1. Try storing the data in the database as xml files them selves. You then do not have to create the xml file. This will

RE: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread David Freeman
post_max_size = 10M upload_max_filesize = 8M memory_limit = 8M As I said before, however.. even without throwing files there, my loop test code only spits out '01234', meaning that its only looping 5 times through the code before exiting... Does file handling only allow

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Well... you asked for it :D Here's the code: Key: When the user puts the URL or clicks the Browse button, they're required to hit the Show Picture button. This puts that picture into the 'pic[]' img space, and enables picInc[]. I didn't bother putting the javascript function picShow in here,

Re: [PHP] passing mysql_error() out put to a different page?

2002-10-15 Thread Brad Bonkoski
Well, the die() function takes a limited number of parameters, which as you noted is why it doesn't like the assignment of the mysql_error() and the header statements both inside the die() function. So, why not something like this: $res = mysql_query(.); if ($res == FALSE) //which is what

Re: [PHP] PHP XML

2002-10-15 Thread Rick Widmer
At 09:25 AM 10/15/02 -0500, Chris Boget wrote: Let me preface this by saying that I know the benefits of using XML It seems to me most of the benefits of XML actually go to the hardware and network suppliers. They get to sell you bigger storage for the bloated data, faster processors for the

Re: [PHP] PHP XML

2002-10-15 Thread .: B i g D o g :.
On Tue, 2002-10-15 at 15:03, Chris Boget wrote: Here are some ideas you might want to review these options: Other people have suggested variations of the below so I'll just respond here to cut down on the bandwidth. 1. Try storing the data in the database as xml files them selves. You

Re: [PHP] PHP XML

2002-10-15 Thread Rick Widmer
At 09:25 AM 10/15/02 -0500, Chris Boget wrote: Do you realize more benifit for the back end processes when using XML that makes any additional time it takes to display a page to the user worth it? Just ask the user if they really want to wait longer for something they can't even see,

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 15 October 2002 04:45 pm, David Freeman wrote: How large are the files you're using for testing? Try repeating the test with files under 1k and see if the result is different. You might be running into a page timeout rather than file

[PHP] $_SESSION

2002-10-15 Thread Gary
Hi All, still trying to update old code. Am I using $_SESSION properly? snip if (mysql_num_rows($res) ==1){ /* If correct start session*/ session_start(); $_SESSION['SESSION_UNAME']; $SESSION_UNAME = $user; header(Location: welcome.php); mysql_free_result ($res); /snip

Re: [PHP] $_SESSION

2002-10-15 Thread Rasmus Lerdorf
Hi All, still trying to update old code. Am I using $_SESSION properly? snip if (mysql_num_rows($res) ==1){ /* If correct start session*/ session_start(); $_SESSION['SESSION_UNAME']; $SESSION_UNAME = $user; Instead of those two lines, use: $_SESSION['SESSION_UNAME'] = $user;

RE: [PHP] $_SESSION

2002-10-15 Thread John W. Holmes
Hi All, still trying to update old code. Am I using $_SESSION properly? snip if (mysql_num_rows($res) ==1){ /* If correct start session*/ session_start(); $_SESSION['SESSION_UNAME']; $SESSION_UNAME = $user; header(Location: welcome.php); mysql_free_result ($res);

RE: [PHP] passing mysql_error() out put to a different page?

2002-10-15 Thread Peter Houchin
Just wanted to say thanks to both Brad and John for their help i got it going with the following function new_user() { $res = mysql_query(...); if ($res == FALSE) { $error = mysql_error(); $_SESSION['mysqlerror'] = $error; Header(Location: logerror.php?op=insert_error); }

  1   2   >