[PHP-DB] Unsubscribing

2012-09-11 Thread Aaron Wood - Slurpy Studios
Hello, I have been trying to unsubscribe from this list, but it doesn't seem to be stopping - could you look into it for me and take me off the list? Many thanks! Aaron Wood

[PHP-DB] PDO include table name prefixes in FETCH_ASSOC

2010-03-24 Thread Aaron Paetznick
.column0]; echo $result[table0.column1]; echo $result[table1.column0]; echo $result[table1.column1]; Or, alternatively: echo $result[table0][column0]; echo $result[table0][column1]; echo $result[table1][column0]; echo $result[table1][column1]; Any ideas? Thanks! --Aaron -- PHP

Re: [PHP-DB] PDO include table name prefixes in FETCH_ASSOC

2010-03-24 Thread Aaron Paetznick
[table0][column0] from a single SELECT. Anyways, thanks all. --Aaron On 3/24/2010 11:28 AM, Niel Archer wrote: Many of my MySQL tables have columns with the same name. I want to have PDO include table names in named result sets. For example: $sth = $dbh-prepare(SELECT * FROM table0

RE: [PHP-DB] session handling

2008-04-28 Thread Aaron
difficult to use a session if any user logging out would log every other user out. Hope this helps, Aaron. -Original Message- From: Nhadie Ramos [mailto:[EMAIL PROTECTED] Sent: Monday, April 28, 2008 10:05 AM To: php-db@lists.php.net Subject: [PHP-DB] session handling hi all, i'm

[PHP-DB] looking for some help displaying reports with php

2006-04-09 Thread Aaron Bliss
box of a list of available reports (report_number); then maybe just a text filed or something that would display reports text (report_text); thanks very much for your help. Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] new guy with stupid question

2006-01-20 Thread Aaron Koning
$date = $month.-.$day.-.$year; $query = INSERT INTO sometable (date) VALUES ('$date');; Hope this works for you, Aaron On 1/20/06, Lonny [EMAIL PROTECTED] wrote: Hello, I am new to the list. I thought I would call my question stupid just to raise some eyebrows to those who might like

Re: [PHP-DB] Refreshing text question!

2006-01-17 Thread Aaron Koning
I think that refreshing the web page with META Refresh every 5 or 10 seconds would surly P.O. anyone actually trying to read your web pages. Anyways: http://www.webreference.com/js/column3/ Or try googling the topic... Aaron On 1/17/06, Julien Bonastre [EMAIL PROTECTED] wrote: Yes I

Re: [PHP-DB] range_alloc_block_size

2005-12-16 Thread Aaron Koning
variables in the PHP ini value or using ini_set(). Read this post also: http://aspn.activestate.com/ASPN/Mail/Message/php-db/2931073 I can't imagine this is a DB problem. Aaron On 12/16/05, Murat Beyhan [EMAIL PROTECTED] wrote: Hello, Im using PHP and MySQL I try to import txt file to mysql

[PHP-DB] How to get 2 columns to display

2004-12-06 Thread Aaron Wolski
HERE/td /tr tdIMAGE HERE/td td/td /tr ANY clue where I am going wrong? Thanks so much. Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] getting data back when inserting

2004-12-01 Thread Aaron Todd
statement on some of the data that I am inserting, but the problem is that it could have a duplicate already in the database. Anyone know of a command or something to point me in the direction I am looking to go? Thanks, Aaron -- PHP Database Mailing List (http://www.php.net

Re: [PHP-DB] getting data back when inserting

2004-12-01 Thread Aaron Todd
Thanks a bunch...thats exactly what I was looking for. Aaron Stefan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You should easily use mysql_insert_id(); otherwise you could use something like: SELECT max(id) FROM ... But I think the first command is what you're looking

[PHP-DB] mysqldump

2004-11-09 Thread Aaron Todd
, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] mysqldump

2004-11-09 Thread Aaron Todd
As far as I know...yes. Thats what I have seen on every post I have looked at and also, thats the way it worked from the console. It wouldnt work with no space. Thanks for your reply, Aaron David Orlovich [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] also ... I notice you

Re: [PHP-DB] mysqldump

2004-11-09 Thread Aaron Todd
/fst/usr/bin/mysqldump -u * -p* database $filename; echo $command; exec($command); Thanks for your post, Aaron Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tuesday 09 November 2004 17:59, Aaron Todd wrote: I have created a PHP script that looks like: ?php

[PHP-DB] Re: Session confusion

2004-10-06 Thread Aaron Todd
Look for the word MUST in red and read that paragraph. It should tell you what you need to know. Hope that helps, Aaron Stuart Felenstein [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Back to my multi page form again ;) I am going to try it with Session variables . So, one

Re: [PHP-DB] Database Backup

2004-10-06 Thread Aaron Todd
?? Thanks, Aaron Andrew Kreps [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 5 Oct 2004 16:33:08 -0400, Aaron Todd [EMAIL PROTECTED] wrote: What is everyone doing to backup a MySQL database. Just in case...I'd like to backup mine, but I was wondering if there was a way

[PHP-DB] Ascending and Descending records

2004-10-05 Thread Aaron Todd
link much like just using Excel. Does anyone know of a good source for accomplishing this? Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Database Backup

2004-10-05 Thread Aaron Todd
or something. Anyone out there doing anything like this? Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Limiting records per page

2004-09-15 Thread Aaron Todd
the LIMIT command, but I am questioning how all of this is going to work. I am unsure of how to change the SQL query on same page like that. Can anyone give me some suggestions. Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP-DB] Insert Query PROBLEMS

2004-09-10 Thread Aaron Todd
. Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Zip Code Fields

2004-09-08 Thread Aaron Todd
? Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: sendmail

2004-08-04 Thread Aaron Todd
troubleshooting that I can do to get more information on what I am doing? Thanks, Aaron Manuel Lemos [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, On 08/03/2004 11:16 AM, Aaron Todd wrote: Is there any tweaking with mail()? I have it working, but it seems to not always send

[PHP-DB] Re: sendmail

2004-08-03 Thread Aaron Todd
. Any ideals on this? Thanks, Aaron Aaron Todd [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] So far, I have been doing ok with PHP. I feel that I have picked it up rather easily. But now I need some help. I am trying to use the sendmail functions to send data entered in a form

[PHP-DB] sendmail

2004-08-02 Thread Aaron Todd
enlighten me on this function. Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: sendmail

2004-08-02 Thread Aaron Todd
Thanks to you both...Matt M. and Philip Thompson. Your suggestion of using the mail() function instead worked perfectly. Thanks again, Aaron Aaron Todd [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] So far, I have been doing ok with PHP. I feel that I have picked it up rather

[PHP-DB] REG_BADRPT error

2004-07-19 Thread Aaron Todd
search and the only suggestion I found was to make sure that the variable contains data. So I echoed the variable and it did have data in it. Does anyone know why I might be getting this? Thanks, Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-DB] Re: REG_BADRPT error

2004-07-19 Thread Aaron Todd
trying to get the hang of it. Any help will be appreciated. Thanks, Aaron Aaron Todd [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I am getting an REG_BADRPT error when I use ereg. The line of code that errors is: if (!ereg('^(?=.*[0-9]+.*)(?=.*[a-zA-Z]+.*)[0-9a-zA-Z

Re: [PHP-DB] Re: REG_BADRPT error

2004-07-19 Thread Aaron Todd
Thanks for the help. Being new to PHP I was unaware that I could use some perl compatible regexes here. That will help me out a lot. Thanks again, Aaron Justin Patrin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] In this case, it seems like you're looking for a lot of different

[PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
debuging and I am unsure of what is really happening. My code is below. Would anyone be able to tell me what I am doing wrong. Thanks, Aaron html body ?php if ($submit) { //VALID USERNAME/EMAIL ADDRESS if (!ereg('^[-!#$%\'*+\\./0-9=?A-Z^_`a-z{|}~]+'.'@'.'[!#$%\'*+\\/0-9=?A-Z^_`a -z

Re: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
username I should use $_POST['username'] instead? Or are you suggesting to use this in one location. Thanks again for the reply, Aaron Jonathan Haddad [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] if you have shell access, please do the following describe users; select * from

Re: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
the echo commands and It is also correct when I echo the statement: echo SELECT * FROM users WHERE email=',$_POST['username'],'; Am I missing something? Thanks again, Aaron Justin Patrin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You should generally $_POST for all posted

[PHP-DB] Re: Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
in the form and the program checks to see if it is equil to password2 it should echo the error. You may be able to tell, but I am getting really confused by this. If anyone can help with this I would really appreciate it. Aaron Aaron Todd [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I

Re: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
= because there shouldnt ever be 2 of the same exact email address' in the table. Thanks again, Aaron Jonathan Haddad [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You want to use $_POST['username'] instead of $username everywhere you have a POST variable. I believe this became

Re: Re[2]: [PHP-DB] Begining PHP...Have Questions

2004-07-19 Thread Aaron Todd
That explains it. I did look at the manual and it did show . instead of , It just didnt even hit me. One of those kick yourself mistakes. Thanks, Aaron Pablo M. Rivas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello Aaron, why are you using , instead

[PHP-DB] Inventory Management for ecommerce store

2004-05-21 Thread Aaron Wolski
Hi All, I'm looking for some advise/login on developing an Inventory Management system for an ecommerce store and what pitfalls one needs to be on the lookout for. Anything anyone would like to contribute would be greatly appreciated! Thanks in advance! Aaron

RE: [PHP-DB] Inventory Management for ecommerce store

2004-05-21 Thread Aaron Wolski
:( Can ANYONE see where my logic is flawed? Thanks! Aaron -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED] Sent: May 21, 2004 11:49 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Inventory Management for ecommerce store I have an e-commerce project coming up

RE: [PHP-DB] Inventory Management for ecommerce store

2004-05-21 Thread Aaron Wolski
-Original Message- From: Matt Schroebel [mailto:[EMAIL PROTECTED] What if I abandon my cart? Are you using transactions to make sure all updates are atomic? All cart records are stored to the database with a timestamp. On each call to the cart_script, I check to see if any

[PHP-DB] how to reuse DB results

2004-05-20 Thread Aaron Wolski
the data I need to display at the top of the page and then a second query to retrieve the full result set. I'm confused! Thanks for any help! Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] PHP based telco billing/accounting software

2004-05-19 Thread Aaron Wolski
checking out to present to them as an alternative option. Any ideas? Thanks and my apologies for the OT post. Although, they would like it to be PHP based ;) Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Dynamic Form?

2004-04-13 Thread Aaron Wolski
and programming requirements, I'd take a stab to see if anyone knows of open source software that might do what I am looking for? Wheel reinvention is not high on my task list. Thanks so much! Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP-DB] Receiving a warning... no clue how to resolve it and need help badly :(

2003-11-27 Thread Aaron Wolski
language=JavaScriptalert(\Done!\);/script; ? CAN anyone help me resolve the problem? I know it has to do with a bug being fixed for array_merge_recursive but I don't know how to resolve the problem and get the results I need :-( Please help? Thanks so much!!! Aaron

RE: [PHP-DB] Unsure of how to perform query and results..

2003-11-21 Thread Aaron Wolski
for the other product_id which. I NEED to make sure that a customer HAS purchased product_id=1 and NOT product_id=14 at ANY time, regardless of a single or multiple orders. Does this make any sense? *sigh* Thanks again. Aaron -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED

[PHP-DB] Unsure of how to perform query and results..

2003-11-20 Thread Aaron Wolski
? I'm very desperate and running out of time :-( Thanks so much! Aaron

RE: [PHP-DB] Current page url

2003-11-19 Thread Aaron Wolski
$_SERVER['PHP_SELF'] http://ca.php.net/reserved.variables There are many others you could use as well. HTH Aaron -Original Message- From: Hugh Dickinson [mailto:[EMAIL PROTECTED] Sent: November 19, 2003 7:34 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Current page url

[PHP-DB] Update Query

2003-10-29 Thread Aaron Bryer
$result = mysql_query($query) or die(Query failed : . mysql_error()); it fails every time. Any Ideas? Using MYSQL 3.23.54 PHP 4.1.2 Thanks Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Update Query

2003-10-29 Thread Aaron Bryer
the select statement but that seamed to make more errors Thanks Aaron -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2003 3:07 PM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Update Query How do you know it failed

RE: [PHP-DB] Upload multiple files?

2003-08-29 Thread Aaron Wolski
to the server and the filename info to the DB. Rather simplistic I know but it's a solution. HTH Aaron -Original Message- From: Chris Payne [mailto:[EMAIL PROTECTED] Sent: August 29, 2003 5:38 PM To: php Subject: [PHP-DB] Upload multiple files? Hi there everyone, I have created

RE: [PHP-DB] Upload multiple files?

2003-08-29 Thread Aaron Wolski
that! You got options. Just a matter of how much time you wanna invest ;) Aaron -Original Message- From: Chris Payne [mailto:[EMAIL PROTECTED] Sent: August 29, 2003 5:45 PM To: php Subject: Re: [PHP-DB] Upload multiple files? Hi there, U you know what they say, keep

[PHP-DB] Heop someone can help with this.. involves sessions.

2003-08-28 Thread Aaron Wolski
non-SSL and SSL but I was hoping someone would have an idea as to how to accomplish this? Both domains are setup on the same box.. the secure SSL area is secure.mydomain.com Any ideas? Thanks! Aaron

[PHP-DB] timestamp formatting on display?

2003-08-26 Thread Aaron Wolski
would I format the date something like: August 26, 2003?? I could easily do this with a UNIX timestamp.. not sure if the same is possible with this type of timestamp. Also.. I can't use the MYSQL functions to format the data into a UNIX TimeStamp. not int his query. Any ideas? Thanks! Aaron

RE: [PHP-DB] Returning Results

2003-08-19 Thread Aaron Wolski
the URL to get the referrer? HTH Aaron -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED] Sent: August 19, 2003 1:54 PM To: PHP-DB Subject: [PHP-DB] Returning Results OK, I'll apologize in advance if this is a little off topic, but I think it'll be close enough

RE: [PHP-DB] array issue

2003-08-17 Thread Aaron Wolski
, $value); } //close the file stuff here HTH Aaron -Original Message- From: OpenSource [mailto:[EMAIL PROTECTED] Sent: August 17, 2003 11:31 AM To: PHP-DB Subject: [PHP-DB] array issue Importance: High hi ya'll I am having a nightmare on this issue of mine. I've got this array

RE: [PHP-DB] array issue

2003-08-17 Thread Aaron Wolski
Good point and nice find, Jeff! I wasn't sure where he was going with the data.. was he trying to save the actual array, intact, for say a chaching exercise or did he want to insert the contents of that array into a file? Could go either way I suppose :) Aaron P.S. Working on a Sunday too

RE: [PHP-DB] array issue

2003-08-17 Thread Aaron Wolski
by many users. Aaron -Original Message- From: OpenSource [mailto:[EMAIL PROTECTED] Sent: August 17, 2003 12:28 PM To: Aaron Wolski Cc: PHP-DB; [EMAIL PROTECTED] Subject: Re: [PHP-DB] array issue Importance: High Hey guys thanks a lot your method worked perfect Aaron, thanks

RE: [PHP-DB] Don't know why query works this way

2003-08-14 Thread Aaron Wolski
Here's some functions I use in my development which save on connect and query calls for me. //General Purpose Utilities. //db_connect connects to the database server and selects the proper database. //Arguments: None //Returns: Nothing function db_connect() {

RE: [PHP-DB] incrementor in loop is not incrementing.. any thoughts?

2003-08-14 Thread Aaron Wolski
304 0 326 0 333 0 211 0 223 0 224 0 225 0 356 0 95 0 100HL 0 102 0 0 is equal to $i.. in other words - it is not incrementing. Sorry for the bad copy/paste. Hope this one is better. Aaron -Original Message- From: Matt Schroebel [mailto:[EMAIL PROTECTED] Sent: August 5, 2003 10

RE: [PHP-DB] Don't know why query works this way

2003-08-14 Thread Aaron Wolski
Since Jeff was telling him there were many ways to accomplish what he wanted I figured I'd expand on what Jeff was saying and actually ILLUSTRATE with working code/examples of what the 'many way's are. Sorry if you found this to be Offtopic. Aaron -Original Message- From: Adam Alkins

[PHP-DB] incrementor in loop is not incrementing.. any thoughts?

2003-08-14 Thread Aaron Wolski
333 0 211 0 223 0 224 0 225 0 356 0 95 0 100HL 0 102 0 Obviously $z is not incrementing. ANY clue why? Thanks! Aaron Aaron Wolski, Project Manager Martek Business Solutions Inc. www.martekbiz.com http://www.martekbiz.com/ 905-780-9574 [EMAIL PROTECTED]

RE: [PHP-DB] Sorting issue

2003-08-09 Thread Aaron Wolski
Seeing code might help us. Aaron -Original Message- From: Jeff [mailto:[EMAIL PROTECTED] Sent: August 8, 2003 10:44 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Sorting issue Why would a mysql db think that 55 was greater than 14000. I have several headings that display sql data

[PHP-DB] displaying result across 3 cells - where did I go wrong?

2003-08-05 Thread Aaron Wolski
td 356 /td /tr tr /tr tr td colspan=3 #4 Braid /td /tr tr td 95 /td td 100HL /td /tr tr td 102 /td can ANYONE see where I have gone wrong? Any guidance is appreciated. Thanks! Aaron

RE: [PHP-DB] MySQL Returns Error

2003-08-05 Thread Aaron Wolski
UNIQUE gradient (gradient) This is causing your issue. You have stated that new records cannot match an already established record with the same name under gradient. HTH Aaron -Original Message- From: Jeff [mailto:[EMAIL PROTECTED] Sent: August 5, 2003 1:44 PM To: [EMAIL PROTECTED

RE: [PHP-DB] RE: query is returning over 74,000 results and taking 30 seconds - HELP!

2003-08-04 Thread Aaron Wolski
have returned: 2067 rows in set (1.63 sec) ANY idea's? Aaron -Original Message- From: Nelson Goforth [mailto:[EMAIL PROTECTED] Sent: August 4, 2003 2:16 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] RE: query is returning over 74,000 results and taking 30 seconds - HELP! Have you tried

[PHP-DB] query works fine on console but not with PHP - why?

2003-08-03 Thread Aaron Wolski
am getting on the browser is: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in http://www.martekbiz.com/KCS/utils.inc on line 52 Anyone have an idea as to what it up? Thanks! Aaron

RE: [PHP-DB] query works fine on console but not with PHP - why? SOLVED

2003-08-03 Thread Aaron Wolski
Hi and thanks, Actually.. there was a typo in an if() statement just prior to it that checked to see if a variable was set before proceeding with the query. What a dumb-ass I am. You know you've been working way to long when you can't do simple things. Thanks for your comments! Aaron

[PHP-DB] ***SOLVED *** query works fine on console but not with PHP ***SOLVED***

2003-08-03 Thread Aaron Wolski
in future debugging. Thanks again to all. Aaron -Original Message- From: Aaron Wolski [mailto:[EMAIL PROTECTED] Sent: August 3, 2003 10:08 AM To: 'Matt'; '[EMAIL PROTECTED]' Subject: RE: [PHP-DB] query works fine on console but not with PHP - why? SOLVED Hi and thanks, Actually

[PHP-DB] make 2 queries into one?

2003-08-03 Thread Aaron Wolski
possibilities here or is this it? Thanks! Aaron

[PHP-DB] Regular Expressions? URGENT

2003-08-01 Thread Aaron Wolski
' and ` which seem to cause some problems. Any good turotials for regular expressions? Thanks a bunch! Aaron

RE: [PHP-DB] updating a column based on info from another coluimn? Desperate!

2003-07-31 Thread Aaron Wolski
Hey hey, Works like a charm. I have have my urls looking like The+Man+on+The+Moon Seems weird, however, PHP automatically strips out the +'s? cause when I echo the variable I get The Man On The Moon. Idea's? Also.. ANYWAY to make the +'s into -'s (hyphens)??? Thanks!! Aaron -Original

RE: [PHP-DB] alphabetical sorting... limiting and paginating onnext set of letter group

2003-07-30 Thread Aaron Wolski
Message- From: Ramil G. Sagum [mailto:[EMAIL PROTECTED] Sent: July 29, 2003 11:38 PM To: [EMAIL PROTECTED] Cc: Aaron Wolski Subject: RE: [PHP-DB] alphabetical sorting... limiting and paginating onnext set of letter group On Wed, 2003-07-30 at 11:17, Aaron Wolski wrote: Hey, Thanks

RE: [PHP-DB] alphabetical sorting... limiting and paginating onnext set of letter group

2003-07-30 Thread Aaron Wolski
Sorry all but getting kinda desparate here :( Trying a few different things and still nothing seems to work. Does anyone have a kick in the right direction that I could explore here? Sorry for the repost. Thanks Aaron -Original Message- From: Aaron Wolski [mailto:[EMAIL PROTECTED

[PHP-DB] alphabetical sorting... limiting and paginating on next set of letter group

2003-07-29 Thread Aaron Wolski
Click for G/H/I Click for J/K/L When the user clicks on one of the another Letter Groupings... the A/B/C changes to whatever they selected as does the displayed results for their selection. Is this even possible? Thanks! Aaron

RE: [PHP-DB] how to get records from one table that are not in another table

2003-07-27 Thread Aaron Wolski
I'd suggest you pick up an SQL book or do some more reading if you don't understand that. -- ---John Holmes... John, Do you have a good book recommendation for MySQL.. I'm looking for more knowledge on improving my queries, etc. LEFT JOINS were completely unfamiliar (still are) until you

[PHP-DB] query and display acting weird...

2003-07-25 Thread Aaron Wolski
welcomed! Thanks Aaron

[PHP-DB] dynamic radio buttons.. checked or not?

2003-07-24 Thread Aaron Wolski
as to my problem here? Thanks in advance! Aaron

RE: [PHP-DB] Line of code should work...but doesn't

2003-07-24 Thread Aaron Wolski
if (strftime(%H) == 03) { header( Location: maintainence.php ); exit; } Note the exit; line. Aaron -Original Message- From: J. Michael Roberts [mailto:[EMAIL PROTECTED] Sent: July 24, 2003 10:09 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Line of code should work

RE: [PHP-DB] Line of code should work...but doesn't

2003-07-24 Thread Aaron Wolski
Hmm.. interesting. I never use a full URI unless I am directing to a secure server and things always work on my end. Works either way I guess? Aaron -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED] Sent: July 24, 2003 10:34 AM To: [EMAIL PROTECTED] Subject: RE

[PHP-DB] why script only updating one table?

2003-07-22 Thread Aaron Wolski
at the same time? It should be updating both at the same time! NOTE: if I remove the processing code for either select box it works without problem. They just don't seem to work together. Thanks! Aaron

RE: [PHP-DB] why script only updating one table? SOLVED

2003-07-22 Thread Aaron Wolski
Hi Guys, No need to think about this. I solved the problem by putting both scripts under one check If ($patternThreads || $patternFabrics) { //DO STUFF HERE } Aaron -Original Message- From: Aaron Wolski [mailto:[EMAIL PROTECTED] Sent: July 22, 2003 10:34 AM

[PHP-DB] passing array data back to form in header?

2003-07-22 Thread Aaron Wolski
=.rawurlencode($alt5Desc)); exit; No clue how to add array data to the above and then integrated it back with a form? Any thoughts? Thanks! Aaron

RE: [PHP-DB] speeing up query and display...

2003-07-21 Thread Aaron Wolski
to help. I am sure I'll be able to learn from what you've provided to take my developments that much further. Thanks once again. Aaron -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: July 20, 2003 4:48 PM To: Aaron Wolski Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB

[PHP-DB] getting MySQL column header?

2003-07-21 Thread Aaron Wolski
! Aaron

RE: [PHP-DB] getting MySQL column header?

2003-07-21 Thread Aaron Wolski
. *shrugs* Thanks for the info, though! Aaron -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: July 21, 2003 4:24 PM To: Aaron Wolski; [EMAIL PROTECTED] Subject: Re: [PHP-DB] getting MySQL column header? How would one get the column name/header out

[PHP-DB] speeing up query and display...

2003-07-19 Thread Aaron Wolski
?php } } } ? Can ANYONE see a way to speed up the query and displaying of the results? Take a while on High Speed and WY to long on Dialup. Thanks a lot Aaron

[PHP-DB] how to do this processing....

2003-07-15 Thread Aaron Wolski
| 0 | | 3 | 2 | 14 | 1 | ++---+--+---+ Any ideas? *begging here* Thanks! Aaron

[PHP-DB] Logic Advice?

2003-07-14 Thread Aaron Wolski
? Thanks in advance! Aaron

[PHP-DB] formating results in seperate tables?

2003-07-08 Thread Aaron Wolski
align=centerbrbrThere Are No Results Matching Your Search Criteria./td ?php } ? /tr This is producing an additional tdimg src=../Graphics/spacer.gif width=20 height=1/td within the tr/tr tags. Any clues what's up? Thanks! Aaron

[PHP-DB] csv upload script?

2003-07-07 Thread Aaron Wolski
Hey all, Does anyone know a simple.. out of the box ready go csv upload script to import values into a table? I've looked at hotscripts and couldn't find anything. Any help is appreciated. Thanks! Aaron

RE: [PHP-DB] csv upload script?

2003-07-07 Thread Aaron Wolski
to encapsulate ('' - single quotes) around the values in Excel? To import data I need to do this obviously and using a upload script I could add this into its functionality. Thoughts? Thanks! Aaron -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: July 7, 2003 2:27 PM

[PHP-DB] moving though an array..

2003-06-26 Thread Aaron Wolski
get this: (Array %h%) Thanks! Aaron

RE: [PHP-DB] moving though an array..SOLVED

2003-06-26 Thread Aaron Wolski
%'; if ($i != (count($col) - 1)) { $col_search .= OR ; } } $col_search .= ); Thanks again Adam for your spelling error notice! Aaron -Original Message- From: Adam Voigt

[PHP-DB] PHP DB Interaction with Javascript?

2003-06-26 Thread Aaron Wolski
; or B) pop-up a notice telling the user they can delete that particular record. Hope that makes sense.. any ideas? Thanks! Aaron

RE: [PHP-DB] Cropped Text

2003-03-12 Thread Aaron Wolski
Strlen : -Original Message- From: Dallas Freeman [mailto:[EMAIL PROTECTED] Sent: March 12, 2003 4:22 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Cropped Text I dunno what it is called so that is why I am asking, so that I can search the web about it. What do you call the method of

RE: [PHP-DB] Store

2003-03-06 Thread Aaron Wolski
Mine :) Aaron -Original Message- From: Marie Osypian [mailto:[EMAIL PROTECTED] Sent: March 6, 2003 2:53 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Store I was wondering if anyone was using a good store that was open sourced in php. Marie O -- PHP Database Mailing List (http

RE: [PHP-DB] What wrong in this SQL

2003-02-27 Thread Aaron Wolski
Try escaping the $catid like: WHERE cat_id='$catid' Aaron -Original Message- From: Alawi shekh albaity [mailto:[EMAIL PROTECTED] Sent: March 1, 2003 1:04 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] What wrong in this SQL What wrong with this code in sql : $SQLSTATEMENT[DeleteCategory

[PHP-DB] help with loop and query

2003-02-07 Thread Aaron Wolski
anyone help me with where I am erroring? Thanks a ton! Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2003-02-05 Thread Aaron Wolski
)) { $str_products = implode(,,$products); } else { $str_products = $products; } echo $str_products; } Aaron

[PHP-DB] Argh ! array help required :(

2003-02-05 Thread Aaron Wolski
)) { $prod_search .= ,; } } $prod_search .= ); Can anyone see where I am going wrong? Thanks! Aaron

[PHP-DB] checking for empty array from a form field? grrrrrrrrrrr!

2003-02-05 Thread Aaron Wolski
help.. puuulease? Aaron

RE: [PHP-DB] checking for empty array from a form field? grrrrrrrrrrr!

2003-02-05 Thread Aaron Wolski
that the option value= is empty! Any more ideas?? *sigh* Aaron -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED]] Sent: February 5, 2003 4:03 PM To: 'Aaron Wolski'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] checking for empty array from a form field? grrr

RE: [PHP-DB] checking for empty array from a form field? grrrrrrrrrrr!

2003-02-05 Thread Aaron Wolski
)) { $prod_search .= ,; } } $prod_search .= ); $product = AND name $prod_search; } Thanks to all for their support and help on this. Longest 4 hours of my life :( Aaron -Original Message- From

  1   2   >