RE: [PHP] a code question..??

2005-11-10 Thread bruce
ay to run a chunk of code on a remote server... i'd rather not put the source on the intial client-app A machine... -bruce -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 1:59 PM To: php-general@lists.php.net Subject: Re: [PHP] a code ques

RE: [PHP] a code question..??

2005-11-10 Thread bruce
but i'm not sure if what i'm thinking of can be accomplished... the information in the code/forms from app B will change based on the username... thoughts/comments.. -bruce -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 1:24 PM To: php-gene

RE: [PHP] a code question..??

2005-11-10 Thread bruce
ly download the code from app B to app A which isn't what i want. i'm looking to keep the code on app B from being modified/played with, which is why i'm inclined to think the code/form in question needs to be able to be run from app B... -bruce -Original Message- From: Ric

[PHP] a code question..??

2005-11-10 Thread bruce
urn the resulting information back to app A... is this even possible?? is there an easier solution...??? thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] post and variables

2005-11-10 Thread Adrian Bruce
if (($_POST['$table_name']) == 1){ //do something } what you have is essentialll looking for a posted value called '$table_name== 1'! Ross wrote: Thanks fpr all the feedback on the password but I have another one... How do I use $_POST with variables. Cant find an example of this anywhere

[PHP] java .vs php

2005-11-09 Thread bruce
php can really drive serious commercial sites... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] to the freelancers!!

2005-11-09 Thread bruce
there are already a great deal of conusulting companies who look to businesses for consulting/development/design work. this kind of model would simply be an offshoot of that kind of approach. -bruce -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Tuesday, N

RE: [PHP] Re: Security Issues - Where to look?

2005-11-08 Thread bruce
be funding for this kind of app... ps.. this kind of app would not be trivial to create!!! -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 12:08 PM To: Gustavo Narea Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Security Issu

[PHP] form question??

2005-11-07 Thread bruce
. unfortunately, i can't seem to find this app, or any other app that would allow me to do this. can anybody point me towards an app that could/would do this? thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] protect password?

2005-11-04 Thread bruce
] pablo... i fail to see how your suggestion is much more secure than placing the user/passwd information in a file that's outside the web access space, and then including the file. in either case, the user wouldn't be able to read the include file. [/snip] Greeting, Bruce. On a dedica

RE: [PHP] protect password?

2005-11-04 Thread bruce
pablo... i fail to see how your suggestion is much more secure than placing the user/passwd information in a file that's outside the web access space, and then including the file. in either case, the user wouldn't be able to read the include file. -bruce -Original Message

RE: [PHP] PHP from the command line

2005-11-04 Thread bruce
y's data/information and go from there. but all things remaning equal, i'm inclined to agree that the same code 'should' work. so, give us the data/output, and we'll see what it looks like. i'm also willing to bet that the issue will be something fairly simple/trivial

RE: [PHP] PHP from the command line

2005-11-03 Thread bruce
ok.. show us the connection code you're using to access the db.. -bruce -Original Message- From: Robbert van Andel [mailto:[EMAIL PROTECTED] Sent: Thursday, November 03, 2005 8:37 PM To: [EMAIL PROTECTED]; 'David Tulloh' Cc: php-general@lists.php.net Subject: RE: [PH

RE: [PHP] PHP from the command line

2005-11-03 Thread bruce
ue... also, is there a user/passwd setup to access the mssql db? -bruce -Original Message- From: David Tulloh [mailto:[EMAIL PROTECTED] Sent: Thursday, November 03, 2005 6:22 PM To: Robbert van Andel Cc: php-general@lists.php.net Subject: Re: [PHP] PHP from the command line Many linu

RE: [PHP] Re: Email Validation built-in? RFC

2005-11-03 Thread bruce
alot longer than almost any other function that i could find, and it appeared to follow the rfc standard. but yeah, it would be nice/good if there was a verified/valid/accurate php email_valid function, as most of the ones that i found were really lacking... -bruce -Original Message-

[PHP] to the freelancers!!

2005-11-03 Thread bruce
would go to pay the resources, set up the project, do initial grass roots marketing, etc... The idea would be to focus in on the projects/technologies/apps that a given business would agree to initially support/fund. Thoughts/comments/etc... -bruce [EMAIL PROTECTED] ps. I'm not talking about a

[PHP] client server question

2005-11-03 Thread bruce
er. these are kind of basic thoughts to my putting this test app together. -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Detailed Report

2005-10-27 Thread Adrian Bruce
text are repeated), and below the details of the records Your solution shows: Customers | John | A36 | New York Customers | Jason | B45 | Los Angeles (...) And I need Customers John | A36 | New York Jason | B45 | Los Angeles (...) (...) On 10/27/05, *Adrian Bruce* <

Re: [PHP] Detailed Report

2005-10-27 Thread Adrian Bruce
load each row of the resultset into an array $row using mysql_fetch_array(), each field in the result set row will be held in the corresponding array element. while ($row = mysql_fetch_array($resultset, MYSQL_NUM)){ echo"$row[0] | $row[1] | $row[2]"; } Hope this helps, Ade Danny wrote:

Re: [PHP] create HTML page on the fly

2005-10-25 Thread Adrian Bruce
I think you can use a different handle when using fwrite() which will make php create a file if one is not already there: something like if ($fp = fopen($file,"x+")){ echo"opened"; } fwrite($fp,$content); fclose($fp); Ade Angelo Zanetti wrote: Hi guys. I've created a small

Re: [PHP] selected index

2005-10-25 Thread Adrian Bruce
dont know of a function but this should work $size = count($array); for($i=0;$i<$size;$i++){ if($selected_person == $array[$i]){ echo"index: $i"; } } Adrian Ross wrote: Hi, I have an array $people= array ("ross", "bob", "chris") I have a variable $selected_person = "chris"

[PHP] looking for test code..

2005-10-22 Thread bruce
ly rewrite/reengineer to get what i need, i'll take that as well.. this is for testing, more than anything... thanks bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] re: some problems with php form

2005-10-19 Thread Bruce Gilbert
ext" value=" $_POST['firstname'] ?>"> > > how would I fix this error? > [/snip] > > You are missing several semi-colons; > > "normal";}?>" > id="firstname" name="firstname" type="text" value=" $_POST['firstname']; ?>"> > -- ::Bruce::

Re: [PHP] re: some problems with php form

2005-10-19 Thread Bruce Gilbert
com/Contact_Form.php> * on line *52* line 52 is: " id="firstname" name="firstname" type="text" value=""> how would I fix this error? On 10/18/05, Ford, Mike <[EMAIL PROTECTED]> wrote: > > On 18 October 2005 15:50, Bruce Gilbert wrote: &

Re: [PHP] re: some problems with php form

2005-10-18 Thread Bruce Gilbert
x27;email']}\n"; //send the mail mail ($to, $subject, $msg, $mailheaders); //display information to user echo "Hola, $firstname!. We have received your request for a web site review , and will respond shortly. Thanks for visiting inspired-evolution.com <http://inspired-evolution.c

Re: [PHP] re: some problems with php form

2005-10-18 Thread Bruce Gilbert
ne *63* -Bruce On 10/17/05, Minuk Choi <[EMAIL PROTECTED]> wrote: > > Wait a minute... you meant > > } > else > { > echo "input.normal"; > } > ?>" id="firstname" name="firstname" type="text" value=" $

[PHP] re: some problems with php form

2005-10-17 Thread Bruce Gilbert
-- Forwarded message -- From: "Richard Lynch" <[EMAIL PROTECTED]> To: "Mark Rees" <[EMAIL PROTECTED]> Date: Mon, 17 Oct 2005 15:12:50 -0500 (CDT) Subject: Re: [PHP] Re: a couple of problems with PHP form On Mon, October 17, 2005 5:32 am, Mark Rees wrote: > --

[PHP] a couple of problems with PHP form

2005-10-16 Thread Bruce Gilbert
I am trying to set up some validation for my php form with the email field using the following code: if(!eregi("^(.+)@(.+)\\.(.+)$",$_POST['email'])) { $error_msg .= "Your email appears to be invalid."; $ok = "false"; } I am trying to accomplish not being able to enter anything other than a va

[PHP] looking for code to delete from lists..

2005-10-11 Thread bruce
elect any items that they want to delete. the app would then iterate through the array on the submit, and do an update on the db tbls.. thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] user admin/site admin open source functions..

2005-10-10 Thread bruce
might be painful for something like mambo, given it's interconectivity. anybody have pointers to an app that you can use as a user admin/site admin function and tie it into a website/app... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pgpgacl usage...

2005-10-10 Thread bruce
hey... is there anyone here, who's actually used the phpgacl functions in an actual app... i'm looking for comments on the pros/cons/etc... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mambo question..??

2005-10-09 Thread bruce
ript gets generated... it appears that the "mod_fullmenu" page is somehow included, but i can't find out where this happens. and yeah, i've tried to ask/send emails to people on the mambo list with no luck. so i figured i'd ask here, if anybody has experience with playi

Re: [PHP] Re: form not submitting when I change action from PHP_SELF to thanks page

2005-10-06 Thread Bruce Gilbert
27;s always been something people kick themselves for > not seeing before. hah > > Keep looking, you'll find it. > > -TG > > = = = Original message = = = > > I checked and no white space involved. What would I need to put tin the > exit()/die() function? > > -- &g

Re: [PHP] Re: form not submitting when I change action from PHP_SELF to thanks page

2005-10-06 Thread Bruce Gilbert
ine 168 is the one with header( 'Location: thanks.php' ); > on it. > can anyone explain why this is happening and how to rectify? > TIA > > On 10/5/05, Robert Cummings <[EMAIL PROTECTED]> wrote: > > > > On Wed, 2005-10-05 at 21:15, Bruce Gilbert wr

Re: [PHP] Re: form not submitting when I change action from PHP_SELF to thanks page

2005-10-06 Thread Bruce Gilbert
7; ); on it. can anyone explain why this is happening and how to rectify? TIA On 10/5/05, Robert Cummings <[EMAIL PROTECTED]> wrote: > > On Wed, 2005-10-05 at 21:15, Bruce Gilbert wrote: > > thanks for the reply. > > > > and where on the page would that need t

[PHP] Re: form not submitting when I change action from PHP_SELF to thanks page

2005-10-05 Thread Bruce Gilbert
thanks for the reply. and where on the page would that need to go? Within the head tags? and would it need to be within ??? On 10/5/05, Robert Cummings <[EMAIL PROTECTED]> wrote: > On Wed, 2005-10-05 at 20:44, Bruce Gilbert wrote: > > I have a form that submits and returns o

[PHP] form not submitting when I change action from PHP_SELF to thanks page

2005-10-05 Thread Bruce Gilbert
I have a form that submits and returns on the same page and works fine. I know want to change the submission action from {$_SERVER['PHP_SELF']} to an external thanks page so the form method would change to: now I need to know what else I have to change in the form below to change to get the

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
p var? thanks bruce -Original Message----- From: bruce [mailto:[EMAIL PROTECTED] Sent: Monday, September 26, 2005 12:38 PM To: 'John Nichel'; php-general@lists.php.net Subject: RE: [PHP] mysql/php date functions.. so you play with the time/date vars on the php side, and then simply

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
could then extract/select the date information from the tbls, and do all the date calculations in php... the downside to this is that you'd have to convert all the date information from mysql to a human readable format... thoughts/comments/etc... -bruce -Original Message- From:

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
john... that appears to be it!! although i would have assumes it would have done a most significant bit fill with 0's... so my question also comes down to .. do i use the php date functions for date/time manipulation.. or do i use the mysql functions any thoughts/suggestions... -

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
l/php date functions.. bruce <mailto:[EMAIL PROTECTED]> on Monday, September 26, 2005 11:13 AM said: > i'm concerned that i can't seem to craft/create a basic sql cmd > within mysql to get a value (other than NOW()) to work... [snip] > my question is why??? MySQL

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
along the same way... why can't i see the timestamp designation (ie the double/int) instead of the date-time format when i look at the timestmp var when i do a 'select * from t1' within mysql?? arrgghh! -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTE

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
d, time) values (2, 33), it doesn't work... if i -->> insert into foo (id, time) values (2, NOW()), it works!!... my question is why??? -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Monday, September 26, 2005 11:00 AM To: php-general@lists.php.

RE: [PHP] mysql/php date functions..

2005-09-26 Thread bruce
ure out how to get this to work... if i create a sql statement and run it directly within mysql, -->insert into foo (id, ctime) values(2, NOW()); this works.. but i can't figure out how to create the sql using the php time() function and getting the insert from the php app...

[PHP] mysql/php date functions..

2005-09-26 Thread bruce
cna pretty much rewrite and use without having to do a lot of initial testing.. if i create the functions myself, i'm going to need to do initial testing to make sure i haven't screwed something up, and i'm on a time crunch!! thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing

RE: [PHP] serialize

2005-09-26 Thread bruce
es as required. table EvalType would have a scoreTypeID (from the ScoreTBL) for each userID. each user could have multiple scoreTypes in the EvalTBL... -bruce -Original Message- From: Murray @ PlanetThoughtful [mailto:[EMAIL PROTECTED] Sent: Saturday, September 24, 2005 11:49 PM To: 'blac

RE: [PHP] basic user/input form questions... more validation!

2005-09-24 Thread bruce
as well as how to use the vars/data in other parts of the given application. -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Friday, September 23, 2005 9:22 PM To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Subject: Re: [PHP] basic user/input form questions..

RE: [PHP] how to stream a movie file with fread

2005-09-23 Thread bruce
if i may... what exactly are you trying to do. are you simply trying to get a single movie to stream... are you trying to get a better feel for how/what streaming is? -bruce -Original Message- From: Graham Anderson [mailto:[EMAIL PROTECTED] Sent: Friday, September 23, 2005 4:07 PM To

RE: [PHP] basic user/input form questions... more validation!

2005-09-23 Thread bruce
which is why it's critical/important to really lay out (architect) your app and to think about how the app should be handling various data types. this also goes to thiking about how you name variables in your app. all of this is really software design 101.... -bruce -Original Me

RE: [PHP] basic user/input form questions... more validation!

2005-09-23 Thread bruce
other words, which 'output' function are/were you referring to. -bruce ps. tried to get to the link... it wouldn't come up for me for some reason... -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 8:38 PM To: [EMAIL PROTEC

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
same wavelength?? -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 7:15 PM To: [EMAIL PROTECTED] Cc: 'Chris W. Parker'; php-general@lists.php.net Subject: Re: [PHP] basic user/input form questions... more validation!

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
one more question/issue... the mysql_real_escape function escapes with a'\' which works for mysql, but isn't standard ansi... is there another function that does the same thing, but uses the ansi standard "'". also, if there is another function, does it also wor

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
>>>> not sure i agree with this one.. if i put "foo \' cat" in a db tbl... i expect that i'll get the same out... which is what some of the articles i've seen have stated.. are you telling me, and are you sure, that i'd get "foo ' cat" out

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
that were added to the data/vars -process/use accordingly... have i left anything out..?? thoughts/comments/etc. -bruce -Original Message- From: bruce [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 11:52 AM To: 'Gustav Wiberg'; php-general@lists.php.net Subjec

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
, but you didn't say how.! also, what's the function of the 'addslashes', and when is it used?! -bruce -Original Message- From: Chris W. Parker [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 11:38 AM To: php-general@lists.php.net Subject: RE: [PHP] basic u

RE: [PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
here's psuedo of what i envision now, in my psuedo code, i don't use the stripslashes/quotes/etc... so, i'm still trying to understand why these functions are needed/required? thoughts/comments/etc thanks -bruce -- index.php if isset($

[PHP] basic user/input form questions... more validation!

2005-09-22 Thread bruce
swer!! also, when inserting/updating a db item, what is the 'correct' process for data? should all data that gets inserted into a db be quoted? if it should, what's the 'standard' practice? psuedo examples of this stuff would be really helpful! thanks for clarifying

[PHP] scanning software...

2005-09-21 Thread bruce
apps that can be used to more or less test an app, putting it through it's paces so to speak... or is the action of testing a website's security/functions pretty much a manual process? -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
or it returns a true/false if the data is valid. is this in essence what you're talking about? -bruce -Original Message- From: Jasper Bryant-Greene [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 5:09 PM To: 'PHP Mailing Lists' Subject: Re: [PHP] securi

[PHP] colleges/schools that offer php/web development courses

2005-09-21 Thread bruce
followup... surprisingly, google doesn't really list alot based on my searches... thanks hey... can you guys give the names of any schools/colleges that have formal programs to teach web development/security applications. thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List

[PHP] colleges/schools that offer php/web development courses

2005-09-21 Thread bruce
hey... can you guys give the names of any schools/colleges that have formal programs to teach web development/security applications. thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
or hard) it is to detect if a query that should have originated with your app's form is coming from a 3rd party/external site? am i missing something here? -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 5:27 PM To: [EMAIL

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
py) to determine that the information you're getting is correct/valid. it also allows you to know what functions you should/shouldn't preform on the data... my $0.02 worth... thoughts... -bruce -Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Wednesday, Se

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
followup... for the short term, i'm going to rip apart a few of the open source web apps that have received funding, to get a feel for what/how these apps have decided to handle their security issues... the assumption/hope is that these guys have put $$$ into doing a serious security audit on the

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
but now that you're talking about ints/strings/floats, aren't you now getting into data typing issues... which gets into the correct/appropriate archistecture of your app, variable namespace issues, etc... -bruce -Original Message- From: Robert Cummings [mailto:[EMAIL PROTE

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
that there are relatively easy/straight-forward methods to resolve this. are you saying that my assumptions are wrong? i would have thought that it would have been simple to only accept 'data' or to restrict 'data' to forms/apps that are resident on my server/environment...

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
heck($_GET['username'])... is this what you're driving at if this is the case, then what you're really stating is that every piece of data you get from the user/client should be checked/verified/validated... is this in essence what you're stating? thanks -bruce --

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
he user and 'foo.com', not 'cat.com' anybody who can clarify this for me... thanks... -bruce ok... i'm confused regarding XSS. Cross-Site Scripting appears to be due to somehow allowing a user to insert 'html'/data/etc into the URL that you as the app ar

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
ith if one did data validation? -bruce -Original Message- From: Jasper Bryant-Greene [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 2:35 PM To: 'PHP Mailing Lists' Subject: Re: [PHP] security/sql issues with php bruce wrote: > two questions: > > 1) css s

RE: [PHP] Re: email validation (no regex)

2005-09-21 Thread bruce
y checking for a single '@' with a domain doesn't do it... what if the user has '[EMAIL PROTECTED]' or '[EMAIL PROTECTED]'. will your regex accept/deny this??? welcome to the world of email validation -bruce -Original Message- From: Murray @ Pl

RE: [PHP] Re: email validation (no regex)

2005-09-21 Thread bruce
eal with the various nuances, and chickened out, using a combination perl/php approach... but you could do what you want to do. however, it's going to be painful if you want it to match the rfc spec... good luck... -bruce ps. take a look at perl's email::valid function if you want to get

RE: [PHP] security/sql issues with php

2005-09-21 Thread bruce
.. i would hope that it wouldn't be hard for gurus/experts to agree on these kinds of issues... -bruce -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 8:29 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] security/sql issues with ph

RE: [PHP] Re: security/sql issues with php

2005-09-21 Thread bruce
. in fact, some simply have no real checks on the data types/structure of the data being inserted into the db at all... and aaron, your app is a commercial app. for now, we're looking in the open source area where we can get to the underlying source. -bruce -Original Message- F

[PHP] security/sql issues with php

2005-09-21 Thread bruce
/quotations around variables/sql_strings -Logging of all db interactions any other things that should be handled (yeah.. i know, i haven't even gotten into the issue of having separate db/app servers, and security of the overall hardware/app environment...) -thanks -bruce [EMAIL PROTECTED] -- PHP

RE: [PHP] headers .vs javascript location.href

2005-09-19 Thread bruce
anyone wanted to take an actual look. and as i also stated, yeah, it could/should be cleaned up, but for now, it's a test app... -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Sunday, September 18, 2005 8:20 PM To: [EMAIL PROTECTED] Cc: 'php&#x

RE: [PHP] Re: headers .vs javascript location.href

2005-09-18 Thread bruce
regardless... i've tried to resolve my issue using the buffering functions and still get the same error... if someone wants to look/examine my code, i'm more than willing to let you see it... it's a test app so there's nothing of critical importance. -bruce -Origin

RE: [PHP] Re: email validation regex

2005-09-17 Thread bruce
.. -bruce -Original Message- From: Robert Paul [mailto:[EMAIL PROTECTED] Sent: Saturday, September 17, 2005 8:06 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: email validation regex Well what does the aforementioned regex seem to miss that Email::Valid catches? --Rob bruce wrote

RE: [PHP] Re: php guru!!!!!

2005-09-17 Thread bruce
er slection of the 'nav menu items' as well as the user selecting different items within the various pages... however, i'm now having an issue when i try to use the 'header' function to redirect the user to another page after the given logic is completed. -bruce -Ori

RE: [PHP] Re: php guru!!!!!

2005-09-17 Thread bruce
i already did... i got the same error... which is why i was/am looking for a guru -bruce -Original Message- From: James Benson [mailto:[EMAIL PROTECTED] Sent: Saturday, September 17, 2005 4:34 PM To: php-general@lists.php.net Subject: [PHP] Re: php guru! http://php.net

[PHP] php guru!!!!!

2005-09-17 Thread bruce
.' err msg... if there's someone that i can talk to regarding this, i'd appreciate it.. thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] headers .vs javascript location.href

2005-09-17 Thread bruce
t this, who ha experience/understanding of what's going on. i've thought about rewriting what i have to this point, but i've got code interspersed with html... yeah.. i know... cleaning it up would probably make things easier/better, but this is a quick/dirty test.. and i don't

RE: [PHP] Re: email validation regex

2005-09-17 Thread bruce
i tried that one... it doesn't do as well as the perl... "Email::Valid" mod... i decided to write a quick perl script, and call it from the php app... seems to satisfy my needs for now... i haven't run across any php script/regex that's as comprehensive as the pe

RE: [PHP] email validation regex

2005-09-16 Thread bruce
reel 'em in john but remember.. there's top/bottom/side/spoon/etc for more, head to san francisco!! later.. -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, September 16, 2005 10:19 AM To: php-general@lists.php.net Subject: Re: [PHP] email validation r

RE: [PHP] email validation regex

2005-09-16 Thread bruce
perl has a mod "email::valid" that claims to do email validation, and it appears to be fairly complex/lengthy. i'm considering simply using this in a perl app, that i'd then call from the php function... use the best tool for the job in the quickest manner!!!

[PHP] email validation regex

2005-09-16 Thread bruce
hi.. looking for a good/working/tested php email validation regex that conforms to the rfc2822 standard. a lot of what i've seen from google breaks, or doesn't follow the standard! any ideas/thoughts/sample code/etc... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing

RE: [PHP] html forms in php

2005-09-15 Thread bruce
philippe, you can accomplish this by using a piece of javascript that fires off an alert, asking the user 'yes/no'. if the user selected yes, the app would do a submit to the page that would then take care of the mysql/db interaction... search on google for 'php onsubmit alert&

[PHP] basic validation wuestion for username/emails...

2005-09-15 Thread bruce
phone/etc... as well. doe you guys have any solid functions that you've created, or any particular libraries that you use (open source) that handle form input validation issues?? i've seen various sites/srticles on google, but i figured i'd ask here as well. thanks bruce [EMA

RE: [PHP] php/mysql object id question..

2005-09-14 Thread bruce
code that's in use that hasn't been thoroughly vetted. when i used to be a software engineer, there's no way in hell that my teams would have offered some of this up for consumption.. -bruce lloks like i'm going to need to start remembering/using that which i long ago tried

RE: [PHP] php/mysql object id question..

2005-09-14 Thread bruce
ok at google, and it appears that you can't return any val from a constructor. in fact, the 'object id' that's being returned appears to simply be (as you stated) the instance of the class that was created... as opposed to a return val... thoughts/comments/etc... -bruce -

[PHP] php/mysql object id question..

2005-09-14 Thread bruce
to return the 'object id' i've also replaced 'false' with other values to see if it made a diff.. it didn't which is good... i would have really hit the roof then!! so.. why is this behavior occuring. any ideas as to why? or, am i just too tired right now! thanks

RE: [PHP] trying to figure out the best/efficient way to tell whoisloggedinto a site..

2005-09-14 Thread bruce
when a user has killed the browser. so, the question might be, how does one detect when a user has killed a session/left your app? -bruce -Original Message- From: Ben Holt [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 11:05 PM To: [EMAIL PROTECTED] Cc: php-general@li

RE: [PHP] trying to figure out the best/efficient way to tell whoislogged into a site..

2005-09-13 Thread bruce
an admin to see who's online, appear to fail when i've killed the test user. the apps still show the killed user as being online... hence my isuue! -bruce -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 6:33 PM To: php-general@lists.php.net

RE: [PHP] trying to figure out the best/efficient way to tell whois logged into a site..

2005-09-13 Thread bruce
on handler, such that i could determine which session var is still alaive.. then that would solve my issues however, as i've stated, i can't find any code sample/articles that get to this point.. any code/thoughts/comments/etc... -bruce -Original Message- From: Ben [mailt

RE: [PHP] trying to figure out the best/efficient way to tell who is logged into a site..

2005-09-13 Thread bruce
d that it doesn't handle users who simply shut down their browser while on the system... thoughts/comments... -bruce -Original Message- From: Philip Hallstrom [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 3:43 PM To: bruce Cc: [EMAIL PROTECTED]; php-general@lists.p

RE: [PHP] trying to figure out the best/efficient way to tell who is logged into a site..

2005-09-13 Thread bruce
any code/pointers to this... i've been doing the google/search thing and haven't come across anything which relates to what i'm searching for... so.. any help in this area would be greatly appreciated!! i would have thought there would be articles/open course code/apps on this!!

[PHP] trying to figure out the best/efficient way to tell who is logged into a site..

2005-09-13 Thread bruce
ng track in a db tbl.. however, i'm still not sure that i've got a good way of tracking who's logged in, and still on... a possible approach would be to have the app periodically update the system whenever a logged in user goes from page to page... so, any thoughts/ideas/etc... -thank

RE: [PHP] confirmation email script/code

2005-09-12 Thread bruce
the process a given user is/was... any good/quick guides you can point me to! thanks -bruce -Original Message- From: Jim Moseby [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 8:56 AM To: '[EMAIL PROTECTED]'; php-general@lists.php.net Subject: RE: [PHP] confirma

[PHP] hidden database issue????

2005-09-12 Thread bruce
can see/manipulate all the other databases. thanks for any pointers/thoughts/etc... searching google hasn't led to any solid solutions.. thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] confirmation email script/code

2005-09-12 Thread bruce
hi.. has anybody come across a really good 'open source' chunk of code for sending/recieving confirmation emails from an app... i'd like to allow the user to register, and send them an email that they then have to hit the link to complete the process.. thanks -bruce [EMAIL PROT

[PHP] log4php

2005-09-12 Thread bruce
want to capture for the various functions/modules within the app. i'd really like to be able to set this up from an 'admin' function within the app. i'd also like the ability to capture this information to either a log file, or db tbl.. thanks -bruce [EMAIL PROTECTED]

<    1   2   3   4   5   6   7   >