Re: [PHP-DB] Real Killer App!

2003-03-14 Thread W. D.
At 01:58 3/14/2003, Nicholas Fitzgerald wrote: As you guys know I've been going around in circles with this spider app problem for a couple days. How would you do it? http://www.hotscripts.com/PHP/Scripts_and_Programs/Search_Engines/more3.html Start Here to Find It Fast!© -

RE: [PHP-DB] session and header(location....)

2003-03-14 Thread P . Gertman
anyway if header(location) does not work, you can insert a small hidden form into the login-checking page, and if login/password is correct, just set body.onLoad event handler to HIDDENFORM.submit(); , where HIDDENFORM is your small hidden form. Ok. i know it is a weird way to solve your

[PHP-DB] PROGRESS via PHP

2003-03-14 Thread P . Gertman
Does anybody have experience of using PROGRESS with PHP? Or, may be any links to people who have? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread Mazin Albahkali
I'm a beginner in PHP and Database connections I'm accessing a MS Access database using PHP. Everything is working fine. I get the data through an ODBC query and show it on an HTML format form so that I can modify the data and re-post it. I tried to pass the values to a second php file that has

Re: [PHP-DB] Real Killer App!

2003-03-14 Thread Nicholas Fitzgerald
I've already looked at all of these, well most of them anyway. The only one's I haven't looked at are the ones that just do real time searches. Nothing of what I've seen is as functional as what I've designed, and for the post part built. Which is why I built it. This spider issue is the only

RE: [PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread Hutchins, Richard
On update.php, you need to refer to the varibles passed from the first page like so: $_POST[varname]. I think that'll fix your problem. -Original Message- From: Mazin Albahkali [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 11:08 AM To: [EMAIL PROTECTED] Subject: [PHP-DB]

RE: [PHP-DB] Problem with passing variables in PHP

2003-03-14 Thread SELPH,JASON (HP-Richardson,ex1)
I am sure someone else will beat me to this but here is an example update.php --- ?php echo html\n; echo body\n; //add this to assign POST to a variable you can use on this page $sname=$_POST[sname] //that will give you an idea of what to do if (isset($sname)) {

Re: [PHP-DB] Real Killer App!

2003-03-14 Thread Brent Baisley
Have you tried adding a flush() statement in at certain points? Perhaps put one in after every page is processed. Technically this is designed for browsers, but perhaps it will help here. It will most likely slow things down, but if it works, then you can adjust it from there (like every 10

[PHP-DB] gd library

2003-03-14 Thread Natividad Castro
Hi to all, I just installed PHP 4.3.1 on a windows 2000 machine. Everything works fine except for graphics. I can't generate graphics. I copy the php.ini to C:\WINNT\system and uncommented the line for php_gd.dll library, but still I can't make to work. I keep getting the following error: Call to

Re: [PHP-DB] Real Killer App!

2003-03-14 Thread Nicholas Fitzgerald
I did try a flush table on the table, even down to for every read or write with no luck. Haven't tried the clearstatcache() though, sounds like an idea who's time has come. Nick Brent Baisley wrote: Have you tried adding a flush() statement in at certain points? Perhaps put one in after

[PHP-DB] Special Characters

2003-03-14 Thread Daz
Hi I am a bit of a newbie to some of this... but I have an issue where I need to read in a file that contains German characters and display them in a browser.. It appears the german ß (ss) gets translated etc I have tried get_html_translation_table(HTML_ENTITIES) and htmlentities() I am using

[PHP-DB] problem connecting w/ODBC

2003-03-14 Thread Beverly Steiner
Hello, I am having problems accessing a database through ODBC. I first sent an email describing my problems accessing an MS Access database through PHP. Today I installed MySQL. I have no problems accessing my test database with the mysql commands. I downloaded MySQL's ODBC driver. I get the

[PHP-DB] Re: MySQL JOIN problem

2003-03-14 Thread Cam
SELECT a.report_id, a.lib_id, a.exclude, b.lib_name, b.city FROM reportinfo a LEFT JOIN libinfo b ON a.lib_id = b.lib_id WHERE reportinfo.quarter != '0' the above statement will return ALL values within the reportinfo table that have a quarter value NOT set to 0. it will return the relevant

[PHP-DB] How to insert image in image ?

2003-03-14 Thread rajni arya
Hi, i have one image of some building . i want to insert an animated image which can indicate the path of particular bulding by the image movement.Its very urgent.Any idea and suggestion are welcomed. Thanks in advance. with regards, Rajni Arya -- PHP Database Mailing List

[PHP-DB] transfer files that doesent exists

2003-03-14 Thread Lars Rasmussen
Hi all, I'm about to make an open source backup module that works on php... The thing i want is for php to execute this command tar cvzfp backup.tar.gz dir/* BUT IN A SPECIAL WAY! I don't want the file backup.tar.gz to be on the server, it's supposed to either be deleted as fast as the user