Re: [PHP-DB] spliting keywords by GET method and SQL query

2004-09-30 Thread Brian
$whereStatement=str_replace("+", " AND message LIKE ", $strToParse); $whereStatement=str_replace(",", " OR message LIKE ", $whereStatement); SELECT * FROM mytable WHERE message LIKE $whereStatement As for your invalid input example, good luck, I don't see any easy way of doing that. On Wed, 29

Re: [PHP-DB] Mysql_fetch_array

2004-09-30 Thread Brian
Yup, we're mind readers, I can figure out your entire script and database structure from the error message. On Thu, 30 Sep 2004 13:30:25 -0700 (PDT), Yemi Obembe <[EMAIL PROTECTED]> wrote: > > > Does anyone have an idea what may probably be the cause of this error: > > Warning: mysql_fetch_arr

Re: [PHP-DB] Safe / Secure Login Script

2004-10-05 Thread Brian
You should definately not set a cooking containing the encrypted password, anyone that's able to grab that cookie can set to work brute forcing the password. On Sun, 3 Oct 2004 13:11:00 -0700, Wendell Frohwein <[EMAIL PROTECTED]> wrote: > I have been writing php code for about 2 years now. I have

[PHP-DB] Not associated with a trusted SQL Server error

2002-05-28 Thread Brian
Server : sql 2000 sp2 in SQL authentication mode If I run c:\php\php.exe test1.php it produces the correct html output displaying the rows. Which means SQL is functioning with the username/pw configuration in the php code. But if called THRU Internet Service manager, the exact same test1.php file

[PHP-DB] Re: Not associated with a trusted SQL Server error

2002-05-29 Thread Brian
nonymous"=dword:0002 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanManServer\Parameter s] "RestrictNullSessAccess"=dword:0001 "Brian" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Server : sql 20

[PHP-DB] mssql_connect problem

2002-05-29 Thread Brian
I removed some 'security' settings that Microsoft had recommended which had prevented Named Pipe connections to our Microsoft SQL server. Basically requiring everyone to use TCPIP connections. Which is very simple when using a sYstem DSN or ADODB or any number of ASP connection types. But the l

[PHP-DB] OCI8 error problems

2001-02-14 Thread Brian Lalor
Good afternoon, all. Sorry if this has been covered before, but a search of the archives doesn't turn up any relevant answers. I'm having a problem with the OCI8 commands. I'm using PHP 4.0.4pl1 with Oracle 8.0.5 (yes, I know that's old, but somebody seems to have lost the CD for 8.1...). Cons

Re: AW: [PHP-DB] OCI8 error problems

2001-02-15 Thread Brian Lalor
On Thu, 15 Feb 2001, Matthias Kopolt wrote: > > Warning: OCIStmtExecute: ORA-1: unique constraint (CUSTOM.SYS_C007900) > violated ORA-06512: at > >"CUSTOM.MULT_SHIP_ADDRESS_PKG", line 162 ORA-06512: at line 1 in db.php on > line 344 > > this has nothing to do with PHP, this is your person

Re: [PHP-DB] OCI8 error problems

2001-02-15 Thread Brian Lalor
On Thu, 15 Feb 2001, Thies C. Arntzen wrote: > how should it? > > you would have to pass in the correct statement|connection > handle - elsewise it simply won't work! Ok, that was a cobbled-up code snippet; replace $this->conn with $conn, and $statement with $s. It still doesn't wor

RE: [PHP-DB] must I "while" loop

2001-03-12 Thread Brian Paulson
yea, you can use the same code that you are just take out the while loop I do it all the time. Thank you Brian Paulson Sr. Web Developer [EMAIL PROTECTED] http://www.chieftain.com 1-800-269-6397 -Original Message- From: olinux [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001

[PHP-DB] bogus "access denied" from php

2001-03-17 Thread Brian Craft
Hi -- I was just trying to get a php script working that uses mysql. It keeps barfing up "Access Denied!" on pconnect, even though the login works fine. I verified this both by checking the mysql log when the script runs (the login succeeds, with no errors), and by checking the account with "mys

RE: [PHP-DB] Getting info from remote host

2001-03-26 Thread Brian Hardwick
I have done this by making a fsockopen call to the remote host (port 80), request the page to be loaded using a http "get", read the returned page into a buffer and parse through it for the information requested. - Brian Hardwick Tangible Networks -Original Message- Fr

[PHP-DB] MySQL security system????

2001-03-27 Thread Brian Grayless
HLLLP! I have a pretty cool User Auth system setup, where it checks on 3 different tiers of security, but how can I secure directories using PHP and have it check if they are allowed access to those directories? It's easy with files thanks, B R I A N G R A Y L E S S Web Administrator

RE: [PHP-DB] Copy data from one mysql table to another?

2001-03-28 Thread Brian Hardwick
quot;Insert into svt_members(key_svt_members, phone, etc,etc,etc) Select svt_members_temp(key_svt_members, phone, etc,etc,etc)" - brian hardwick -Original Message- From: Bob Stone [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 3:54 PM To: [EMAIL PROTECTED] Subject: [PHP-D

RE: [PHP-DB] Problems with Oracle connections

2001-03-29 Thread Brian Hardwick
I belive you have to set your sid and oracle_home before attempting to ora_logon? putenv("ORACLE_SID=your sid); putenv("ORACLE_HOME=your oracle home); if(ora_plogon("rascunho@dvfpmm","java")) { echo "conectou"; } else { echo "falhou outra vez:".ora_error(); }") -Original Message- From:

RE: [PHP-DB] ODBC support

2004-03-11 Thread Brian Mansell
Take a look at ADODB (It's a good database library that supports a variety of systems): http://php.weblogs.com/ADODB Here's a quick intro: http://www.databasejournal.com/features/php/article.php/651 -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Thursday

[PHP-DB] Variables in database content

2004-05-23 Thread Brian Stoffer
Hi there. I have what I suspect is an easy one, but was unable to find something similar in the archives (it's a tough one to search for...). Basically I have a table with a text block column. The actual content that lives in column contains php variables that I want to be able to use when I

[PHP-DB] PHP and RedBack COM objects

2004-07-16 Thread Brian E
types returning. I am attaching an example code. Thanks. Brian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Sybase Peristent Connections Gotchas

2004-09-14 Thread Brian Foddy
mited... I might be able to create some wrapper that always resets the transaction state before starting?? I'm curious how others have attempted to solve these problems, and others I haven't thought of yet. Clearly many can be avoided by having clean code, but just 1 exception... Bria

Re: [PHP-DB] Sybase Peristent Connections Gotchas

2004-09-15 Thread Brian Foddy
ecution anyway so that is automatic. I'm not sure how I can reset the handle in Sybase? If its possible I'd like to know how. The more I think about this, it seems that this whole thing is more work than its worth. But if someone sees some effective ways to handle some of these issues I'd

Re: [PHP-DB] Sybase Peristent Connections Gotchas

2004-09-15 Thread Brian Foddy
. It may be in my situation, it just isn't worth the troubles. I just thought I'd ask... Thanks, Brian Robert Twitty wrote: Hi Brian Why don't you just avoid using sybace_pconnect() with transactions? I use ODBTP to connect to SQL Server and Sybase databases, and this is not an issue.

Re: [PHP-DB] help! sqlserver only returns 256 from varchar types

2002-01-25 Thread Brian Bruns
which library are you using to connect to SQL Server? Is this php running on windows or are you trying from unix? On Fri, 25 Jan 2002, Kevin Won wrote: > I'm having a problem with varchar fields out of mssql which are only returning value >lenghts < = 256 characters. > > I know that the ph

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

2002-02-03 Thread Brian Bruns
use dblib with TDS 7. But that's a story for another day. ;-) Brian On Sun, 3 Feb 2002, Oliver Cronk wrote: > > After looking at the newsgroup microsoft.public.sqlserver.odbc I came > across > the follwing piece of information - anyone know if it is true? It would > certa

[PHP-DB] Stopping and restarting Oracle

2002-04-12 Thread Brian Higgins
with different parameters, act differently? I've tried using shell_exec() to see if that makes any difference. Sometime it works and continues after restarting Oracle, sometimes is doesn't!!! $msg=shell_exec("sudo /etc/rc.d/init.d/dbora start"); echo $msg; f

[PHP-DB] Benefits of assigning query to variable

2002-07-31 Thread Brian Graham
Are there any benefits to assigning a query to a variable? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] installing to connect to a remote database server

2002-08-17 Thread Brian Noecker
Newbie here. I need to install php with postgres support. Problem is I need to have it connect to a non-local database. Now, the pgconnect function seems to allow for that, but the install wants local files. Can someone point me in the right direction here? Thanks, Brian -- PHP Database

[PHP-DB] connectivity problem

2002-08-27 Thread Brian Noecker
Hey everyone, got a problem here. I'm using php4.2.1, postgres 7.2. I'm trying to do a simple database connect with the following small php script: -- PHP Test http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] RE: [PHP-INST] "VERY NEWBIE" php_* mod_* --with- question

2002-10-02 Thread Brian . Duke
Well, I'm not the best qualified to answer this question but here goes my best shot (Guru's watch me here make sure I don't screw this up). Starting with Apache. Apache does not actually process your *.php files. There is another engine that takes care of that called Zend. There are a couple lin

[PHP-DB] Re: Print data

2002-10-24 Thread Brian McGarvie
an alternative I'm looking into is simply writing/formatting the data into a text file, then using the good old 'net print' dos command to print the file... "José Moreira" <[EMAIL PROTECTED]> wrote in message news:1035381924.1052.8.camel@;inf4.pt... > hello, at my company we have several network p

[PHP-DB] IMAP Body to MySQL

2002-11-21 Thread Brian Mitchell
, body) VALUES ('$subject', '$fromaddress', '$toaddress', '$ccaddress', '$date', '$size', '$unread', '$body')"); Any help you could provide would be greatly appreciated. Thanks, Brian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] How to limit a WHILE statement?

2001-04-02 Thread Brian Hardwick
Your might want to consider limiting the records selected. For example "select emp_name from employees limit 0,20". Alternatively consider using a a "for" statement. - Brian Hardwick Tangible Networks. -Original Message- From: Bob Stone [mailto:[EMAIL PROTECTED]]

RE: [PHP-DB] column names

2001-04-03 Thread Brian Hardwick
"SHOW FIELDS FROM $table" - Brian Tangible Networks www.tangible-networks.com -Original Message- From: Mauricio Junqueira [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 03, 2001 5:10 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] column names HI, does anyone knows how

RE: [PHP-DB] Does anyone know, or is it even possible

2001-04-10 Thread Brian Grayless
don't want my users to have to authenticate twice. Even then they would be separate systems and could not track what the other is doing? There's got to be some PHP/MySQL/Linux/Apache Guru out there! Someone help! Brian Grayless -Original Message- From: John Huggins

[PHP-DB] Really Dumb Question...

2001-04-11 Thread Brian Grayless
How do I create a table within my PHP? Heres what I currently have, but I keep getting parse error on the "create" line... $result = mysql_query($sql); create table $propTable ( ID int not null auto_increment primary key, TourName tinytext, TourTitle tinytext, ViewTitle tinytext, TourNum tinyint

[PHP-DB] PHPNuke 4 error. Got any clues?

2001-04-18 Thread Brian Tegtmeier
Ok.. I recently uploaded all the files, followed the readme exactly, set permissions, uploaded the mySQL file, created the database, and all necessary steps to my FreeBSD server. When I goto the admin.php, I get this error: "Fatal error: Call to undefined function: translate() in /home/websites/w

[PHP-DB] Help with Apache+PHP4 on Windows ME

2001-04-19 Thread Brian Tegtmeier
** Note: This server config and usage is NOT intended to run a FTP or webserver. Just a test of running Apache on a Windows machine ** Recently I downloaded and installed Apache 1.3.19 (the apache_1.3.19-win32-src-r2.msi file from http://httpd.apache.org/dist/httpd/binaries/win32/) on my Windows

[PHP-DB] Flash+PHP search error

2001-05-14 Thread Brian Tegtmeier
I am currently in the progress of setting up a page for my client located at http://64.77.185.160/main.html which integrates a PHP search function to find keywords on a page. The problem I am running into now is when I goto that main.html page, I get this "\n", $header); } } ?>" message above my F

[PHP-DB] PHP4 ODBC after NTsp6 upgrade REALLY SLOW!!!

2001-05-16 Thread Brian Coulter
is what I have to do, I guess I will. Brian Coulter [EMAIL PROTECTED] -- 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 administrators, e-mail: [EMAIL PROTECTED]

[PHP-DB] PHP and DGS Search anchor tags

2001-05-18 Thread Brian Tegtmeier
Recently I setup the DGS Search PHP script from http://www.hotscripts.com/Detailed/5477.html to use on my site. Currently it works great and how it is supposed to but I was wondering if there was something I could add. If you've ever used or tested this script, the way it works in a "Googleish" i

[PHP-DB] Anchor tags for search results

2001-05-21 Thread Brian Tegtmeier
What's up? I am running into a slight problem with a search funtion and I was wondering if any of you PHP gurus can help me out. My current situation is where I have a Search script via this DGS Search at http://www.hotscripts.com/Detailed/5477.html and when I do a search for a specific item, it

RE: [PHP-DB] how to "email article to a friend"

2001-06-20 Thread Brian Paulson
article you will lose those pageviews and click through rates. Just a thought, let me know if you want to do it this way and I will share with you what we have done. Thank You Brian Paulson Sr. Web Developer [EMAIL PROTECTED] The Pueblo Chieftain www.chieftain.com 1-800-279-6397 -Original

[PHP-DB] MySQL Error???

2001-06-27 Thread Brian Grayless
Is anyone familiar with this MySQL error? "1062: Duplicate entry '127' for key 1" I wrote a great bookmark management program that works fine, but everytime I insert bookmarks, I insert somewhere over 120 and I start getting this error, and it won't add them anymore. Any suggestions??? Thanks,

RE: [PHP-DB] MySQL Error???

2001-06-29 Thread Brian Grayless
Thanks guys. It was all very helpful and worked great! Brian -Original Message- From: Christian Sandfeld [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 3:06 AM To: 'Brian Grayless'; '[EMAIL PROTECTED]' Subject: RE: [PHP-DB] MySQL Error??? Brian, Sounds t

RE: [PHP-DB] I need a User Authentication solution

2001-07-16 Thread Brian Grayless
. It runs through SSL(optional) and encrypts password information using the MD5 hash. It handles multiple groups of users, and site areas etc... David, if you are interested in this, let me know. It's almost done. Thanks, Brian Grayless -Original Message- From: leo g. divinagraci

[PHP-DB] OSX+Apache+PHP4 setup

2001-07-16 Thread Brian Tegtmeier
What’s up guys? I got a quick question about how the Mac OSX Server handles the Apache modules. I am not sure, but I am hoping that the way it handles Apache is the same as the PC port. I was reading some documentation in a info.php file from the OSX Server Library directory and it said I had t

RE: [PHP-DB] Counting Number of Instances in a One2Many Relationships

2001-07-24 Thread Brian Dunworth
dateAdded date, > publishedLanguage varchar(5), > URL varchar(100), > status varchar(5), > PRIMARY KEY (bibID) > ); > > Suggestions are appreciated! SELECT publisherID,count(*) FROM WLPbib GROUP BY publisherID; - Brian

[PHP-DB] MS SQL datetime format problem

2001-07-24 Thread Brian Weisenthal
Hi, I am having trouble setting a datetime in a ms sql database. I can put in a date, but when I add the time i always get an error. this is likely something simple, any thoughts? thanks --Brian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP-DB] simple database question

2001-07-26 Thread Brian Weisenthal
ok this should be an easy one, i am just blanking on it here. i want to link two tables together, a user table and address table. i create the user entry first, then create the address entry. after creating the address entry how do i get the auto_id that was entered in to enter it into the user t

[PHP-DB] Re: simple database question

2001-07-26 Thread Brian Weisenthal
oh, using ms sql "Brian Weisenthal" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > ok this should be an easy one, i am just blanking on it here. > > i want to link two tables together, a user table and address table. i cr

[PHP-DB] porting from ms sql to mysql

2001-07-26 Thread Brian Weisenthal
anyone know of a good website for information on taking on the task of porting from ms sql to mysql? -- 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 administrators, e-mail: [EMAI

RE: [PHP-DB] PATCH for 9i support (was Re: [PHP-DB] Re: Oracle 9i Support)

2001-07-27 Thread Brian Dunworth
On Thursday, July 26, 2001 at 9:48 PM, Sommai Fongnamthip said: > I have oracle 8i in Linux server. How could I > connect it with PHP (on other server)? Install the Oracle Client software (on the other server). --- Brian S. Dunworth Sr. So

[PHP-DB] Setting up authentication with redirect

2001-08-03 Thread Brian Tegtmeier
I recently got a copy of that "PHP and MySQL Web Development" book and found a script that lets you do a simple authorization script with a login popup box where you have to enter the username and password to continue. The code in the book has it where it shows text like "authorization successful"

[PHP-DB] mysql errors....

2001-08-07 Thread Brian Weisenthal
hey, im using php and mysql. i am sure that i am getting mysql errors but for some reason they are not being displayed making it real hard to debug. i hate debugging, im going to go insane..i cant see my errors helpplease, pretty please.thanks bwise -- PHP Database Mailin

RE: [PHP-DB] Oracle CLOBs and carriage returns

2001-08-09 Thread Brian Dunworth
Into($sql_comments, $row, > OCI_ASSOC+OCI_RETURN_NULLS)) { > > $lob_data = $row["COMMENTS"]->load(); > echo $lob_data; > } > > I know the information is stored correctly since a SQL query from the > command line works properly and all formatt

[PHP-DB] Function problem???

2001-08-10 Thread Brian Grayless
Anybody know what might be wrong with this function? My first version of the function was... function Include_Lib($libFile) { include(LIB_DIR.$libFile); } but it didn't work so I simplied it... function Include_Lib() { include("/path/generic_vars.phpi"); } // Function call Incl

[PHP-DB] Can PHP exclude % characters in external txt file?

2001-08-13 Thread Brian Tegtmeier
Whats up everybody? I am setting up a PHP script that has a text file, but in the actual text file it has a % tag before each item in the list due to a way this database is setup. What i am trying to do is have this txt file display on one of my subpages, but have PHP force the removal of the

[PHP-DB] quick http question

2001-08-15 Thread Brian Weisenthal
i need a script to access a html file on the web. i need to pass a login and password to the server. i tried doing http:[EMAIL PROTECTED]:[EMAIL PROTECTED] , it didnt work, anyone have an idea how to do this? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMA

[PHP-DB] some crazy interesting file read business

2001-08-15 Thread Brian Weisenthal
ok so i am trying to read in a file from the webthe catch is there is a username and password involved. my script works becuase i can read in www.yahoo.com. i have tried using file, fopen, and readfile, but with no success. when i try my file which looks like, http://username:[EMAIL PROTECTED]

[PHP-DB] PHP IRC channel?

2001-08-16 Thread Brian Tegtmeier
What's up everybody? I was sitting at my computer today and was just wondering if there was an IRC chat channel for PHP itself as in develoment and coding help. Let me know if there is one. Thanks! :) -- ___ FREE Personalized E-mail at Mail.com ht

[PHP-DB] Implementing P3P with phtml files?

2001-08-17 Thread Brian Tegtmeier
Ok.. I am starting up this website for a business of mine and will be using PHP in the form of the .phtml extension because I want to basically make them HTML webpages with snippets of PHP code. After doing some research the last few days about how Internet Explorer 6 is going to restrict and

[PHP-DB] variable if statement

2001-08-23 Thread Brian Weisenthal
i want to do something like this: $string="($a==1) OR ($b==2)"; if ($string) { do something ; } any ideas? i tried using if (eval($string)) but that just gave me errors. thanks -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

[PHP-DB] MySQL Persistent connection is TOO persistent???

2001-08-28 Thread Brian Grayless
Gotta problem For some reason, many of my persistent connections aren't terminating. I end up with up to 30 connections to MySQL that aren't being used. My guess is that the user connection is slow and the script never finishes running or something. Is there a way to get all my connections

[PHP-DB] RE: bizarre ocilogon problem

2001-09-05 Thread Brian Mauter
27;s own signal handler and it will clean up the stray oracle processes. Good luck, Brian -Original Message- From: Galvin, Max [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 04, 2001 10:07 AM To: '[EMAIL PROTECTED]' Subject: bizarre ocilogon problem Hi, I have a page that retr

RE: [PHP-DB] Oracle8i connecting to database problem

2001-09-10 Thread Brian Dunworth
plus and the > variables I've set in php for the password and name etc. so I'm pretty > sure my client and server installations are ok). > Can you create the connection to the database using sqlplus while logged into the web server as &#x

[PHP-DB] NEED HELP WITH ORACLE & PHP PLZ.

2001-09-13 Thread Brian Ofsthus
I have The following A Sun Ultra2 Running the Oracle Client talking to a Oracle Instance 8.1.7 on another server. sqlplus scott@rhinodb works greate. I do have to be in $ORACLE_HOME for some reason. When I issue the following command I get an error Untitled Error in the Browse

[PHP-DB] PHP/Access and Quickbooks

2001-09-13 Thread Brian Grayless
Does any one have any ideas how Quickbooks data can be synced with an Access database? I want to use PHP to post some account information live from my accounting system and can't seem to figure out a way. If anyone else also has a need to extract information from Quickbooks and has any ideas as t

[PHP-DB] .plan (finger) scripts in PHP?

2001-09-17 Thread Brian Tegtmeier
What's up guys? I was just wondering if there is any PHP scripts floating around on the net that can serve and administer .plan files like how http://www.webdog.org, http://www.3dfinger.com and http://finger.stomped.com/ run theirs. If I was looking for one that came the closest I was looking f

[PHP-DB] Sending text messages to cell phone with PHP?

2001-09-25 Thread Brian Tegtmeier
I am in the progress of setting up a script where a user can goto a certain website, supply info like a message and their name and instantly page someone on their cell phone by using the PHP based web form. The text would then be sent to the cell phone reciepents screen as it was typed on the w

RE: [PHP-DB] Huw do I perform update? I missed the accual code bit.. sorry

2001-09-26 Thread Brian Paulson
n it wont update proproly. Should look like this $query = "UPDATE dvd.news_categories SET newscategory='$newscategory', newscat_status='$newscat_status' WHERE newscat_id = $newsid"; Hope this helps Thank You Brian Paulson Sr. Web Developer The Pueblo Chieftai

[PHP-DB] Help with PHP CSS selector

2001-10-28 Thread Brian Tegtmeier
Currently I have PHP code that runs a server side check on your browser (placed above the tags) and assigns a certain CSS stylesheet to it. The problem I have with the current code is it only goes by the browser and not both the browser and platform. I have the source code (listed below) that

[PHP-DB] "Lost Access Logging Out" why do you taunt me IE?

2001-11-12 Thread Brian Tegtmeier
Sup all. I'm currently running into a problem (can send source if needed) with this news script called "PHP-News" at http://www.hotscripts.com/Detailed/7145.html where if I login to the admin area with Internet Explorer 5 and click on one of the sectional links like "Users" or "News" I am immed

[PHP-DB] Re: file upload, again

2001-11-14 Thread Brian Mauter
hey can do. -Brian -- 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 administrators, e-mail: [EMAIL PROTECTED]

[PHP-DB] Help with mail notifying via file upload

2001-11-30 Thread Brian Tegtmeier
Ok here is my story. I have this PHP script that uses a file system and when a person comes to one of my pages, they click the Browse button, click Submit, and get redirected to another page after they have gotten validated for uploading a JPG or Word document. Here is my thing.. I have it set

RE: [PHP-DB] EZ Question...I think

2001-12-03 Thread Brian Paulson
(); $simple->debug("This is a test message"); ?> That should be enough to get you started Thank You Brian Paulson Sr. Web Developer [EMAIL PROTECTED] http://www.chieftain.com -Original Message- From: Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 2:

[PHP-DB] MySQL: Reverse Order by???

2001-12-19 Thread Brian Grayless
This is probably a really stupid question, but I'm not by any means an SQL guru. How you do a reverse order by in SQL, kind of like "ORDER BY field" only reverse the order??? Thanks, Brian -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP-DB] SQL/PHP problem

2001-12-19 Thread Brian Grayless
; still, it didn't work. Am I missing something fundamental here? Is this one of those RTFM questions? Thanks, Brian -- 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 administrators, e-mail: [EMAIL PROTECTED]

[PHP-DB] need help looping through each record with a query - stumped

2002-01-09 Thread Brian Tully
eir scores. But the loops aren't working. I'm sure it's something simple and obvious I'm missing but my brain is fried! I'd appreciate it if someone could take a look and offer any advice. It's about 65 lines of code (with comments). thanks in advance! brian

[PHP-DB] Re: [PHP] need help looping through each record with a query -stumped

2002-01-09 Thread Brian Tully
out how to get this certification bug resolved. I need to finish writing this script so that the database can accurately reflect who is certified. Hope that clarifies things. Any help would be greatly appreciated. In the meantime I'm going to play around with Martin's sql statement -

Re: [PHP-DB] Re: [PHP] need help looping through each record witha query -stumped

2002-01-10 Thread Brian Tully
doesn't allow me to loop through each Username. so how would I do this? is this where i might use FOR or FOREACH? brian on 1/10/02 7:23 AM, DL Neil at [EMAIL PROTECTED] wrote: > Brian, > ... > > =regardless of the age of the database, the data appears to be normalised (to >

[PHP-DB] Best web stats package with PHP4/MySQL

2002-01-21 Thread Brian Tegtmeier
What's up guys? I was wondering if any of you knew of a stats package written in PHP4 and MySQL that has the same tracking features and reports as WebTrends and is free for download. Any suggestions would be kosher -- ___ Sign-up for your own F

[PHP-DB] Database Limitations

2003-01-09 Thread Brian Taylor
p? I know my limitation in perl was not perl or postgres, it was the DBI module that we were using. Thanks! Brian Taylor Web Developer Verve Internet Solutions > for higher education 228 Krams Ave., Suite 300 Philadelphia, PA 19127 p: 215.508.4920 f: 215.508.4590 toll free: 1 866-672-2

[PHP-DB] VFP 6 via ODBC and data integrity questions

2003-02-03 Thread Brian Evans
like a number field) This especially holds true since I have to deal with local users possibly adding at the exact same moment as PHP (ie. a racing issue). Can anyone tell me how to avoid problems? Would odbc_prepare() reserve a new key for me? Thanks. Brian PJC Services P.S. Kudos to all of

Re: [PHP-DB] VFP 6 via ODBC and data integrity questions

2003-02-03 Thread Brian Evans
ODBC for a moment?? I cannot find any information on this. Thanks for your help. Brian PJC Services At 03:13 PM 2/3/2003, you wrote: There's an alternate route, but I've used it only over a network, not across the internet. Create a keys table which has two fields - tablename an

Re: [PHP-DB] VFP 6 via ODBC and data integrity questions

2003-02-03 Thread Brian Evans
OK, I know what I have to do. I thank you for all of your help and I will use your idea of a select, then update and then capture all errors to try again. Hopefully, this will minimize problems in the future. Thanks, Brian PJC Services At 06:45 PM 2/3/2003, you wrote: At 06:25 PM 2/3/2003

[PHP-DB] Anyone used dgssearch script before? Newbie needs some help

2003-02-03 Thread Brian Compton
so I can get away from MS). It's working, except I'm still getting some errors at the top and bottom of the page. if anyone can help me or know of a site that gives some advice using this script, please let me know. Thanks. -Brian [EMAIL PROTECTED] -- PHP Database Mailing List (

[PHP-DB] file save

2003-03-07 Thread Brian Evans
Did you put a \r\n at the end of each line?? This just might be it. Brian >I am saving some data to a text file and what I want to do is have each >line of data collected to be on its own line. >What I am collecting is a roster (no, name, grade) so there is 10-15 >people on a

Re: [PHP-DB] SELECT FROM 2 or more tables

2003-08-20 Thread Brian Dailey
John, It sounds like you need to read basic documentation on combining SQL queries. Basically, you need to have a column that is common across both tables. Eg., in TABLE1 have a column named TABLE1ID. Have the same ID cross referenced in TABLE2. The ID would be sequenced in some way (auto_incre

Re: [PHP-DB] SELECT FROM 2 or more tables

2003-08-20 Thread Brian Dailey
t to do. So you want to set a filter on the merged records, which can be anything, but is usually a match between a field in one table and a field in another table. That's a join in two sentences or less. On Wednesday, August 20, 2003, at 03:41 PM, John Ryan wrote: I cant grasp JOIN for t

Re: [PHP-DB] spell checking and "did you mean?"

2006-03-26 Thread Brian Mansell
I believe Google Suggest uses the Levenshtein method. I would tend to go with that rather than soundex in order to avoid being too english-language-centric with your implementation. --bemansell On 3/23/06, peter lovatt <[EMAIL PROTECTED]> wrote: > Hi All > > I am looking to check whether a keywor

[PHP-DB] Test

2006-10-03 Thread brian . kejser
Hi Sorry for sending this test message but I haven't received a response from the list daemon. Thanks -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hi I setup Php as follows: 1. Download the php zip file (not the installer) 2. Unzip the files to c:\Php 3. Add c:\php to the path 4. Copy php.ini-dist to php.ini 5. Add and enable the web extension php5isapi.dll 6. Add the .php extension mapping to php5isapi.dll at the the web sites folder 7. Gr

re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
d Mysql on Windows Hi Brian... My guess is that you want to take the period out from in front of the /ext parm... This says look one directory higher than that of /php... for a folder called /ext Here is my extension_dir entry: extension_dir = "c:/WebServ/php/ext/" Scot L.

Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey I'm using IIS on W2K3 SP1, php 5.1.6 and mysql 5.0.24a. -Original Message- From: "Alejandro Tesone" <[EMAIL PROTECTED]> Sent: Tue, October 3, 2006 12:25 To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Php 5 and Mysql on Windows Which server you will use? Apache or Microsoft? On 10

Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey I did that already. Step (8) of setting up php. Do I need to move any files around or add anything else to the path? -Original Message- From: "Stut" <[EMAIL PROTECTED]> Sent: Tue, October 3, 2006 14:12 To: [EMAIL PROTECTED] Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Php 5 and

Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Hey I tried that but I still get the error. -Original Message- From: "Dave W" <[EMAIL PROTECTED]> Sent: Tue, October 3, 2006 14:33 To: [EMAIL PROTECTED] Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Php 5 and Mysql on Windows You might want to try php.ini-recommended instead of php.

Re: [PHP-DB] Php 5 and Mysql on Windows

2006-10-03 Thread brian . kejser
Wow That solved it. Awesome. Thanks you so much. -Original Message- From: "Frank M. Kromann" <[EMAIL PROTECTED]> Sent: Tue, October 3, 2006 19:20 To: php-db@lists.php.net Subject: Re: [PHP-DB] Php 5 and Mysql on Windows IIRC: When you are using ISAPI you must have php,ini in the windo

Re: [PHP-DB] Re: [PHP] Passing variables to a PHP script on clicking a hyperlink

2007-08-24 Thread Brian Rue
In this case $_POST would be the appropriate array, since your form is using the POST method: Goltsios Theodore wrote: > > I thought I just did a comment and suggested that it is a lame solution > to use $_REQUEST plus I did not know witch of the two method (POST or > GET) would be appropriat

[PHP-DB] Re: Trying to make site map

2010-01-03 Thread Brian Smither
>It breaks apart when I try to go on the third level. On the second iteration of $secpageArray, it fetches Row4 from the database. Because there is no Page_Above that equals 4 (that is, no child of Page 4 in your map), the level 3 query might be coming back as False (no records returned), which

[PHP-DB] Re: Trying to make site map

2010-01-03 Thread Brian Smither
>It breaks apart when I try to go on the third level. =Sorry, my email client didn't word-wrap.== On the second iteration of $secpageArray, it fetches Row4 from the database. Because there is no Page_Above that equals 4 (that is, no child of Page 4 in your map), the level 3 query might be coming

[PHP-DB] Re: jpgraph and mysql passing array

2011-03-26 Thread Brian Smither
Would you try an experiment? In this line: $sql = ("SELECT * FROM evdobanding WHERE Market like '%$term' and Cell_Sect = '$term2' and Date = '$term3' ORDER BY distance asc"); Change to: $sql = "SELECT * FROM evdobanding WHERE Market like '%".$term."' and Cell_Sect = '".$term2."' and Date = '".$

  1   2   >