Re: [PHP] Re: Templating engines

2005-04-29 Thread Robert Cummings
On Fri, 2005-04-29 at 13:27, Clive Zagno wrote: > Wait - doesn't smarty 'compile' the php file and the tpl file into > another php file. If you look into templates_c directory you find some > 'compiled' templates. I didn't say smarty wasn't compiled, only that InterJinn avoids the cache overhea

Re: [PHP] Re: Templating engines

2005-04-29 Thread Robert Cummings
On Fri, 2005-04-29 at 21:09, Mattias Thorslund wrote: > Rasmus Lerdorf wrote: > > > Mattias Thorslund wrote: > > > >> Who says PHP itself is a template engine? I think nobody. > > > > > > I do. > > > > It comes down to whether you want the delineation between the template > > and the business l

Re: [PHP] Re: Templating engines

2005-04-29 Thread Robert Cummings
On Fri, 2005-04-29 at 23:55, Rasmus Lerdorf wrote: > Robert Cummings wrote: > > I don't think that templates have a dependency between the number of > > pages using the template and an increase in the number of functions. In > > fact depending on the template, and the tem

Re: [PHP] Re: Templating engines

2005-05-02 Thread Robert Cummings
On Mon, 2005-05-02 at 13:02, Skrol29 wrote: > Mattias Thorslund a écrit : > > Then I wonder what makes skol29 think PHP's "basic template features" > > are "too poor" to be used seriously? I think PHP's "basic template > > features" are phenomenal. > > PHP is a nice and powerfull scripting lang

Re: [PHP] Templating systems for single developers?

2005-05-10 Thread Robert Cummings
On Tue, 2005-05-10 at 17:17, Murray @ PlanetThoughtful wrote: > Hi All, > > So, if anyone out there uses a templating system (ie Smarty, PHPSavant etc) > and they don't work in a team environment, I'd love to hear what benefits > you derive from so doing. I do for as many projects as possible. No

[PHP] Passing variable number of parameters by reference

2005-05-12 Thread Robert Meyer
cho" statement in the Set$HTMLOut() function does. Is it not possible to pass variables by reference to a variable-length parameter list? Or am I doing something wrong? If so, what? I have already built a work around. I do not need any work arounds. I just think one should be able to pass variables by reference to a function that accepts a variable-length parameter list. Regards Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Robert Meyer
at least prevent a record from being added when refresh is clicked? Regards, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Robert Meyer
"Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Robert Meyer wrote: >> Hello, >> >> Scenario: >> 1) User is presented a blank form. >> 2) User fills in form. >> 3) User submits form. >> 4) Record is

Re: [PHP] Refresh (F5) adds another SQL record.

2005-05-17 Thread Robert Meyer
(!refreshed()) { ... } ..., but I guess not. Thanks for your input. Regards, Robert "Marcus Joyce" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Why dont you check that data isnt being duplicated? > > $query = "SELECT auto_col FROM table where c

[PHP] Re: Refresh (F5) adds another SQL record.

2005-05-18 Thread Robert Meyer
Hello to all that responded. Thanks very much for your help. I implemented and thoroughly tested the following: header("Location: ".$_SERVER['PHP_SELF']); exit; And is works great for this particular need.. Regards, Robert "Robert Meyer"

[PHP] Responses in my email.

2005-05-18 Thread Robert Meyer
Hello, When I post a question here, I get an email for every response posted. I only want the response posted, not emailed to me. The other newsgroups I belong to don't send me an email. What are my options if any and how do I implement them? Regards, Robert -- PHP General Mailing

[PHP] PHP and PayPal

2005-05-18 Thread Robert Meyer
k containing Unique ID. 5) That link starts a script that confirms with PayPal that payment was made in full. 6) When confirmed, user is presented with key (can copy and paste) with option to have it emailed to them. Thanks for your time. Regards, Robert -- PHP General Mailing List

[PHP] Re: Responses in my email.

2005-05-19 Thread Robert Meyer
Thanks for your responses. I've set up a filter on [PHP] to redirect email. I just prefer to read it all on the newsgroup. Regards, Robert "Robert Meyer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > When I post a question here, I g

[PHP] Excellent language PHP5 is!

2005-05-19 Thread Robert Meyer
the reference in variable parameter lists. You can pass by reference to a function taking a variable number of parameters, but func_get_arg() only returns the value and therefore, any changes to that variable do not change the variable as seen by the caller. Maybe a func_get_refarg() could be implemented. Over all, an Excellent language PHP5 is! Regards, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can't copy a variable from one session to another?

2004-04-09 Thread Robert Cummings
On Fri, 2004-04-09 at 18:40, Scott Bronson wrote: > After talking with some folks on IRC, it sounds like this > is effectively impossible?? > > I'd just like to check -- is it really impossible in PHP to > copy a variable from one session to another? I don't mind > subtle trickery. If they're bo

Re: [PHP] MVC based frameworks and PHP5 Object Model.

2004-04-10 Thread Robert Cummings
On Sat, 2004-04-10 at 15:19, Lukasz Karapuda wrote: > I am curious to see if the experienced PHP developers have a recommendation > as far as which MVC or Model 2 based framework is the most robust to use in > web applications that will be developed in PHP5. For Java developers the > Struts Framewo

Re: [PHP] creating log files out of a delete statement

2004-04-11 Thread Robert Sossomon
How are you passing the name through?? If using a form to do it then just use the $_POST[name] or $_GET[name] in the logfile. You have to have the name pull in the previous page, just pass it through: or: got it will try that instead.. > > - Original Message - > From: "John W. Holmes"

Re: [PHP] Can't copy a variable from one session to another?

2004-04-13 Thread Robert Cummings
On Tue, 2004-04-13 at 15:39, Scott Bronson wrote: > On Fri, 2004-04-09 at 16:01, Robert Cummings wrote: > > If they're both on the same server then there's nothing stopping you > > from loading Suirrel mail's session data in the other application and > > nothin

Re: [PHP] Socket client application

2004-04-13 Thread Robert Cummings
On Tue, 2004-04-13 at 17:17, René Fournier wrote: > Hi, > > I've gone through several good PHP sockets tutorials, but all of them > seem to focused on making socket servers. What I actually need to do is > write a socket client. There's an app runnning on a distant server that > accepts incomin

Re: [PHP] Partly matching a field (Slightly 0T)

2004-04-14 Thread Robert Cummings
On Wed, 2004-04-14 at 19:45, Ryan A wrote: > Hi, > I have a field "client_id" in the database and I have a search from where > the client can enter the client_id to match from the database and then > return the accounts details. > > Later on we had to tack a -- after the client id, > eg: if the or

Re: [PHP] PHP editor

2004-04-15 Thread Robert Cummings
On Thu, 2004-04-15 at 07:14, Arthur Radulescu wrote: > It might be a directive for good programming but as long as this might > double the size of a resulted page this is not good for me. Thanks anyway. Sounds like you suffer from no-accelerator-itis. Using one of the PHP accelerators will make wh

Re: [PHP] From my side, this thread is closed (Was: smarty)

2004-04-16 Thread Robert Cummings
On Fri, 2004-04-16 at 10:44, Chris de Vidal wrote: > Richard Harb said: > > Could we please close the thread already? > > Sorry; sometimes I learn something new but still see ignorance going on > around me, so I "get on a mission" to help. Seems some people are > determined to stay ignorant and e

Re: AW: [PHP] smarty

2004-04-16 Thread Robert Cummings
On Fri, 2004-04-16 at 13:27, John Nichel wrote: > Chris W. Parker wrote: > > Enrico Weigelt > > on Friday, April 16, 2004 10:13 AM said: > > > > keep in mind it's friday!! > > Then why am I still sober? > > >>Either we'd talk about the (dis)advantages of TE's in ge

Re: [PHP] Print out all the files in a directory

2004-04-17 Thread Robert Cummings
On Sat, 2004-04-17 at 12:35, Pooya Eslami wrote: > That is exactly my question! how do I look for a .mp3 file?! > I tried > if ($file != "." && $file != ".." && $file=="*.mp3") > but it doesn't work! if( eregi( '\.mp3$', $file ) ) Cheers, Rob. -- .--

Re: [PHP] [AWF-TOPIC] Reporting tool - CVS?

2004-04-17 Thread Robert Cummings
On Sat, 2004-04-17 at 14:47, Kim Steinhaug wrote: > Scenario : > Im working on several large projects, all which have several users. > Each user has a personal innstallation. > > Each of my projects are in constant development, and often the updates > from version to version are only in a

Re: [PHP] why doesn't this work ?

2004-04-18 Thread Robert Cummings
On Sun, 2004-04-18 at 10:27, Pooya Eslami wrote: > Yes, the server supports php, and I don't want to make it into a php file > because its a big html file and I just need this little script on it. Why > cannot I embed php in html files? You CAN embed PHP in .html files PROVIDED THAT YOUR WEBSERVER

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Robert Cummings
On Mon, 2004-04-19 at 19:59, Ryan A wrote: > > > when i talked to my internet people about those sorts of emails like > > btconnect and pandasoft virus warnings all they told me was that some > > spammer person had probably tagged the php mailinglist database of email > > addresses and are now bou

[PHP] Remove white space?

2004-04-22 Thread Robert Sossomon
$items[id]; $item_num = $items[item_num]; Overtime I need to rewrite my DB loading script to handle this for me, but right now I need to band-aid it so that I can auto-generate pages and get them loaded into a catalog. Thanks! Robert -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
_block holds all the data it accumulates through the run. How do I rewrite the inlclude to work, or do I need to find another way to make the includes? The includes are all template files that I used on the site to keep everything consistent. Thanks, Robert -- PHP General Mailing List

RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
ached the php file that does the site generation and maybe it will shed some light on what I am trying to do as well. TIA!! Robert -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, April 22, 2004 11:33 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROT

RE: [PHP] Adding includes to files

2004-04-22 Thread Robert Sossomon
x27;t find the right files. It's on track and working all neat and tidy now. Thanks for the help guys! I still feel like a doofus though... Robert -Original Message- From: Richard Harb [mailto:[EMAIL PROTECTED] Sent: Thursday, April 22, 2004 11:46 AM To: Robert Sossomon Cc: [

[PHP] Include Files Solution

2004-04-22 Thread Robert Sossomon
mages and pages with a leading '/' character, and everything is working fluidly. Now I'm ready to call it a week and go to the beach!!! Who's with me?! BTW, if you want to see the output pages then feel free to click here: http://www.pfssales.com/catalog.html and click on any of the

[PHP] What's wrong with this IF statement?

2004-04-22 Thread Robert Sossomon
"$item_num - $item_desc\n"; } } My assumption is that BOTH IF statements are not working correctly since the logic is that if they are built the same they would react the same. HELP! TIA! Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] TRUE or true?

2004-04-22 Thread Robert Cummings
On Thu, 2004-04-22 at 19:51, Richard Davey wrote: > Hi all, > > I know from a code point of view it makes no difference at all (i.e. > they both work), but which format do you all use for booleans? > > TRUE / FALSE > > or > > true / false > > The PHP manual uses both :) Zend Studio tries to au

[PHP] reg exp for smtp error codes

2004-04-23 Thread Robert Kornfeld
hey professionals out there! does anybody have a script that parses the error-code from a returned email-header (esmtp)? thanx! Robby -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Scripting practices

2004-04-23 Thread Robert Cummings
On Fri, 2004-04-23 at 16:55, Gabe wrote: > When scripting in a language (such as PHP) that doesn't require you to > determine the variable type before you use it, is it still considered > good technique to initialize it to the type you're going to use it as? > Or is it considered ok to just use

[PHP] Max file size for uploads?

2004-05-12 Thread Robert Sossomon
something messed up somewhere that I need to tweak?? Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Max file size for uploads?

2004-05-12 Thread Robert Sossomon
I get this error message now in my httpd error log: [Wed May 12 10:07:01 2004] [error] [client 66.43.177.38] Requested content-length of 69888498 is larger than the configured limit of 524288, referer: http://dinghy.homeip.net/upload.php Any thoughts? TIA! Robert -Original Message

RE: [PHP] a passion to perform ;)

2004-05-13 Thread Robert Sossomon
away from flash/shockwave and you are ahead of the game. My $.02 Robert -Original Message- From: Matthias H. Risse [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 11:28 AM To: [EMAIL PROTECTED] Subject: [PHP] a passion to perform ;) Hi, i just benchmarked some of my

[PHP] FIXED: Max file size for uploads?

2004-05-12 Thread Robert Sossomon
ed 2. /etc/php.ini max_file_size = ???M #Max size in MB post_max_size = ???M #Max size in MB /etc/init.d/httpd restart Then upload! HTH!! Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reversing a string?

2004-05-13 Thread Robert Cummings
On Thu, 2004-05-13 at 17:27, Kristian Rasmussen wrote: > Hi all, > > I need a script for reversing a string ("hello world" becomes "dlrow > olleh"). I have tried the following: > > --- > $length = strlen($i); > $g = ""; > > while ($length > 0) > { >$g = $i[$length] . $g; > $length--; > } >

Re: [PHP] 0 == null ?

2004-05-10 Thread Robert Cummings
On Mon, 2004-05-10 at 15:17, Justin Palmer wrote: > Hi, > > Does 0(zero) really equate to null? > > if( 0 == null ) > { > echo 'true'; > } > else echo 'false'; > > Result echo's: true > > This can not be right, can it? I have never heard of such a thing. As > far as I recall from any la

Re: [PHP] frameworks

2004-05-07 Thread Robert Cummings
On Fri, 2004-05-07 at 11:14, Edward Peloke wrote: > Ok...I don't want to start a flame war but I have a project coming up with a > very short code cycle...2-3 weeks. I am a procedural guy but want to do > more OOP in this project...what are the votes for a good overall framework > to use? I need

RE: [PHP] frameworks

2004-05-07 Thread Robert Cummings
all > framework > to use? I need good seperation of code and presentation (smarty) but > also > want to simply stuff like forms, db, etc. > [/snip] > > I think Robert Cummings will probably say InterJinn :) It's a miracle!!! A

Re: Re[2]: [PHP] PHP Website Architecture

2004-05-07 Thread Robert Cummings
On Fri, 2004-05-07 at 12:00, Richard Davey wrote: > Hello Ryan, > > Friday, May 7, 2004, 4:51:45 PM, you wrote: > > RA> Nearly all programs can be written in *one* very large .php file but just > RA> thinking of going back in to make changes 3 months down the road would be a > RA> nightmare. > >

Re: [PHP] Template Engine

2004-05-14 Thread Robert Cummings
On Fri, 2004-05-14 at 16:13, George Lantz wrote: > I was just wondering if anyone had any good advice or tutorials on > building a simple template engine system. I am woking on a small project > that I would like to distribute, and I would of course like to separate > logic from html. I really just

Re: [PHP] How to duplicate this functionality?

2004-05-14 Thread Robert Cummings
On Fri, 2004-05-14 at 21:23, Ryan A wrote: > Hi, > I just visited a popular swedish based site that is mostly powered via ASP, > they have one little piece of functionality this is really puzzling me and I > would like to add it to one of my working apps (a shopping cart)... > > Its a bit hard to

RE: [PHP] [AWF-TOPIC] How to duplicate this functionality?

2004-05-15 Thread Robert Cummings
On Sat, 2004-05-15 at 01:08, Will Collins wrote: > Also, I forgot to mention... another little snippet I like to use for > something like this is this meta tag: > > > > It makes the pages fade into each other, and for two pages that are very > similar (like your example) it doesn't look like the

Re: [PHP] Domain Name Lookup Scripts

2004-05-18 Thread Robert Cummings
On Tue, 2004-05-18 at 11:09, Ryan Schefke wrote: > Can anyone suggest any good (free) domain name lookup scripts written in > php? This is short, far from perfect, but I use it to look for availability and you might be able to adapt it - it also checks for a verisign hit which is usually that stup

[PHP] Error building PHP with PostgreSQL support

2004-05-24 Thread Robert Fitzpatrick
ndefined reference to `krb5_unparse_name' /usr/local/lib/libpq.so: undefined reference to `krb5_free_context' /usr/local/lib/libpq.so: undefined reference to `krb5_init_context' *** Error code 1 -- Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Text Streaming in PHP

2004-05-31 Thread Robert Cummings
On Mon, 2004-05-31 at 15:28, Stephen Lake wrote: > Hey All, > > I know I asked this before a couple of weeks ago, but I need a good swift > kick in the right direction :D > > I need to know how to do a text stream in PHP. > I have tried the following: > > while loop with flush and sleep function

Re: [PHP] Sorting an array

2004-06-02 Thread Robert Cummings
On Wed, 2004-06-02 at 12:59, John Nichel wrote: > Okay, I know someone is going to shoot me for asking such a dumb > question, but I just can't seem to find the answer anywhere. I have a > multidimensional array which I would like to sort on the value of one of > the keys... > > Array > ( >

[PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Is it possible to configure PHP/.htAccess/etc. for assuming a query when the users enters a path like this: www.myserver.com/path/154--> assumes www.myserver.com/path/index.php?code=154 The only thing I could do is avoid writing index.php but I still have to write the ?: www.myserver.com/path

Re: [PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Where and how do I set this? I'm to Unix and PHP. "Marek Kilimajer" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Robert Winter wrote: > > Is it possible to configure PHP/.htAccess/etc. for assuming a query when the > > users enters a path

Re: [PHP] Asuming query without the ?

2004-06-03 Thread Robert Winter
Where and how do I set this? I'm to Unix and PHP. "John Nichel" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Robert Winter wrote: > > Is it possible to configure PHP/.htAccess/etc. for assuming a query when the > > users enters a path

[PHP] Bulk table updates

2004-06-03 Thread Robert Sossomon
I am looking for a tutorial or a already created class or file that I can use to learn how to create a form that is populated from a database table that can be edited in every row and column and takes only 1 SAVE button to upload all the changes. Thanks, Robert -- PHP General Mailing List (http

Re: [PHP] Current URL

2004-06-03 Thread Robert Cummings
On Thu, 2004-06-03 at 23:15, Stephen Craton wrote: > I've wondered for quite some time, and search just as long it seems like, > for a way to get the current URL directory. For example, let's say you were > at www.example.com/files. The script is executing in this directory, and > it's calling an i

Re: [PHP] Current URL

2004-06-03 Thread Robert Cummings
On Fri, 2004-06-04 at 01:38, Aidan Lister wrote: > Hi, > > You could use $_SERVER['DOCUMENT_ROOT'] > That doesn't work... as the OP mentioned, the URLs might need to refer locally within a subsite built as a subdirectory within the document root. Cheers, Rob. >

Re: [PHP] Bulk table updates

2004-06-03 Thread Robert Sossomon
T[sel_item_desc]','$comment', now(),'','','','')"; mysql_query($addtocart); I have a test set of data and stuff set up on my server: http://lonewolf.homelinux.net/quoter There are some errors in not getting to other tables, but the

Re: [PHP] select from db

2004-06-03 Thread Robert Sossomon
> table name 'Selections' > > (rows) RoundGameName Winner Points > data eg 1 1mark Hawthorn 4 > (if team is a winner then 4 points added) > >1 2mark Geelong 0 > Assuming y

RE: [PHP] MySQL & PHP

2004-06-04 Thread Robert Sossomon
Run: rpm -q php-mysql >From the command line as root and see if it is there, if not go out and download the fedora rpm with that in the title, since that would be the missing piece. HTH, Robert -Original Message- From: Nunners [mailto:[EMAIL PROTECTED] Sent: Friday, June 04, 2004 8

Re: [PHP] Asuming query without the ?

2004-06-04 Thread Robert Winter
ewriteEngine On RewriteRule ^localpath(.*)$http://www.google.com$1 Thanks again! "Marek Kilimajer" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Robert Winter wrote: > > Where and how do I set this? I'm to Unix and PHP. > > > &

[PHP] Re: Refresh Page

2004-06-05 Thread Robert Winter
You can use javascript timer that are much more flexible than because you can test for conditions, etc. "Mike Mapsnac" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > I want to refresh page every 10 seconds, without clicking on "Refresh" > button. > Any ideas how this can be

[PHP] Re: Coloured rows

2004-06-05 Thread Robert Sossomon
print statement here $j++; $i++; // if you have more then 16 rows // this next piece should make it repeat the if statement // without having to do too much funky stuff in them if ($j = 16) {$j = 0;} } } > Hi robert, any way of making the script you sent to me, colour 8 rows in > one col

[PHP] Prevent IE6 from blocking cookies

2004-06-05 Thread Robert Winter
Do I a prevent Internet Explorer 6 from blocking cookies (session cookies, etc)? Do I have to setup something in the META HEADERS? Thanks Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Intalling PHP 4.3.7 with PGSQL support and Heimdal

2004-06-06 Thread Robert Fitzpatrick
libkrb5.so.20 => /usr/local/lib/libkrb5.so.20 (0x280b2000) ... Anyone know where I can make these changes needed or what to try next? -- Robert

Re: [PHP] Intalling PHP 4.3.7 with PGSQL support and Heimdal

2004-06-06 Thread Robert Fitzpatrick
On Sun, 2004-06-06 at 16:49, Marek Kilimajer wrote: > Robert Fitzpatrick wrote: > > Trying to portupgrade my PHP 4.3.6 package with PostgreSQL 7.4.2 support and > > getting this error below. Trying to setup postgresql with Heimdal Kerberos 5 > > support, believe I have, b

[PHP] Help installing imagick

2004-06-06 Thread Robert Duran
agick. Conversely, there ARE references for my openbase module, so I am assuming the problem is in the module installation itself (i.e. telling php that the module exists). Is that the job of phpize? Any help would be appreciated. Robert p.s. During the install process I never got errors, bu

Re: [PHP] Intalling PHP 4.3.7 with PGSQL support and Heimdal

2004-06-07 Thread Robert Fitzpatrick
On Sun, 2004-06-06 at 17:48, Marek Kilimajer wrote: > Robert Fitzpatrick wrote: > > On Sun, 2004-06-06 at 16:49, Marek Kilimajer wrote: > > > >>Robert Fitzpatrick wrote: > >> > >>>Trying to portupgrade my PHP 4.3.6 package with PostgreSQL 7.4.2 suppo

[PHP] Refresh a frame?

2004-06-09 Thread Robert Sossomon
: URL for the full page, but how do I do it for JUST a single page? Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session.use_trans_sid = 0 does not work!!!

2004-06-10 Thread Robert Winter
e the ?PHPSESSION= (maybe because it detects the browser has cookies enabled). Thanks Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Cookie Security?

2004-06-14 Thread Robert Cummings
On Mon, 2004-06-14 at 14:02, Justin Patrin wrote: > [snip} > > As well as much harder for AOL subscribers (whose IP's change per-request) > > to use the site. > [snip] > I don't think it changes per request, but rather has the potential to change between requests. Cheers, Rob. -- .

[PHP] Load a frame and work on another?

2004-06-14 Thread Robert Sossomon
ion.href = \"show.html\";"); header("parent.B.location.href = \"prefs.html\";"); exit; Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Erroring out?!

2004-06-14 Thread Robert Sossomon
mysql_result($get_query_res,0,'qty'); $p = mysql_result($get_query_res,0,'price'); $c = mysql_result($get_query_res,0,'comments'); $tp = mysql_result($get_query_res,0,'Tprice'); $display_block = ""; } ?> Choose from the following options to set yo

RE: [PHP] Erroring out?!

2004-06-14 Thread Robert Sossomon
cript load 2 pages. Any thoughts? -Original Message----- From: Robert Sossomon [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 2:44 PM To: PHP List Subject: [PHP] Erroring out?! I am trying to figure out why if there is an error in my query it throws an error message to the screen

[PHP] Load 2 Frames (possibly OT)

2004-06-14 Thread Robert Sossomon
n.href = \"show.html\";"); header("parent.B.location.href = \"custn.html\";"); Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php and CSS

2004-06-14 Thread Robert Sossomon
Bruno, Drop some code our way, it's just a guessing game for me without it. Robert -Original Message- From: Bruno Santos [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 3:28 PM To: [EMAIL PROTECTED] Subject: [PHP] php and CSS Hello all. Im deleloping some PHP page

RE: [PHP] php and CSS

2004-06-14 Thread Robert Sossomon
-Original Message- From: Bruno Santos [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 4:04 PM To: Robert Sossomon Cc: [EMAIL PROTECTED] Subject: Re: [PHP] php and CSS Robert Sossomon wrote: > Bruno, > > Drop some code our way, it's just a guessing game for

[PHP] Excel files with multiple sheets

2004-06-15 Thread Robert Sossomon
. No sense in re-inventing the wheel... TIA! Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Getting values?

2004-06-18 Thread Robert Sossomon
14 values to do. TIA Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Getting values?

2004-06-18 Thread Robert Sossomon
THANKS!! Worked like a charm. Robert -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Friday, June 18, 2004 8:52 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Getting values? On Friday 18 June 2004 20:38, Robert Sossomon wrote: > if ($_POST[comment-$i] != "

[PHP] OT?? -> calling frames within frames

2004-06-18 Thread Robert Sossomon
this order, but it does not seem to be working: //Call the main page echo 'parent.main.location.href ="main.html";'; //Open the next two pages I need in them echo 'parent.B.location.href ="item.html";'; echo 'parent.C.location.href ="cart.html&quo

[PHP] " in data

2004-06-18 Thread Robert Sossomon
I have data with "something" in it and when I pull that data and dump it into an HTML form I am losing everything that is after the first " . Has anyone encountered this before, and have a way to patch it? TIA RObert -- PHP General Mailing List (http://www.php.net/) To unsubscri

RE: [PHP] " in data

2004-06-18 Thread Robert Sossomon
ut how to read my $_POST[data] and parse that to put in " because that seems to work, but not sure how to make PHP do that. Any thoughts? Robert -Original Message- From: Torsten Roehr [mailto:[EMAIL PROTECTED] Sent: Friday, June 18, 2004 1:40 PM To: [EMAIL PROTECTED] Subject: Re: [P

RE: [PHP] " in data

2004-06-18 Thread Robert Sossomon
document: value="10in. COMP.PLATE " CONCORDE " 4/125" Robert -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Friday, June 18, 2004 2:58 PM To: Robert Sossomon; [EMAIL PROTECTED] Subject: RE: [PHP] " in data [snip] I guess I need to fi

RE: [PHP] Posting Data to MySQL

2004-06-24 Thread Robert Sossomon
in the DB before). If you pass me some specifics I might be able to give you a hand. Robert -Original Message- From: Tom Chubb [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004 9:19 AM To: [EMAIL PROTECTED] Subject: [PHP] Posting Data to MySQL I am trying to design a form that

[PHP] Works in Mozilla, not in IE

2004-06-28 Thread Robert Sossomon
I have the script below from another source, and it works prefectly in Mozilla, however IE keeps wanting to save the PHP page and then barfs. Any ways to fix and make it work for both? TIA! Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Works in Mozilla, not in IE

2004-06-28 Thread Robert Sossomon
That just made IE put it out in "data" style, Excel didn't open up. :( Any other thoughts? -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 2:47 PM To: Robert Sossomon Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Works in Moz

RE: [PHP] Works in Mozilla, not in IE

2004-06-28 Thread Robert Sossomon
That just put me right back at the beginning, IE trying to DL the PHP page... I have php 4.2.2 installed at this moment as well... Robert -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: Monday, June 28, 2004 3:58 PM To: Robert Sossomon Cc: [EMAIL PROTECTED

[PHP] safe mode/open basedir not working ?

2004-06-30 Thread robert mena
Hi, I host a few virtual domains in apache 2 and use php. The virtual domain is something like ServerAdmin [EMAIL PROTECTED] DocumentRoot /home/httpd/html/domain.com ServerName www.domain.com ErrorLog logs/domain.com-error_log CustomLog logs/domain.com

Re: [PHP] safe mode/open basedir not working ?

2004-06-30 Thread robert mena
Marek, but the program was executed using a system call from a php script. - rt On Wed, 30 Jun 2004 23:50:02 +0200, Marek Kilimajer <[EMAIL PROTECTED]> wrote: > > robert mena wrote --- napísal:: > > > Hi, > > > > I host a few virtual domains in apache 2 and us

Re: [PHP] safe mode/open basedir not working ?

2004-06-30 Thread robert mena
gt; > On Wed, 30 Jun 2004 23:50:02 +0200, Marek Kilimajer <[EMAIL PROTECTED]> wrote: > > > >>robert mena wrote --- napísal:: > >> > >>>Hi, > >>> > >>>I host a few virtual domains in apache 2 and use php. > &g

Re: [PHP] safe mode/open basedir not working ?

2004-07-02 Thread robert mena
e a > directory with only root write access and point that config option to > it. > > > On Wed, 30 Jun 2004 22:31:27 -0400, robert mena <[EMAIL PROTECTED]> wrote: > > > > Marek, Justin, > > > > am I doing something wrong with the setup because I saw t

Re: [PHP] safe mode/open basedir not working ?

2004-07-02 Thread robert mena
t; That *may* not work as it's a file, not a folder. You're welcome to > try, though. :-) > > On Fri, 2 Jul 2004 14:19:25 -0400, robert mena <[EMAIL PROTECTED]> wrote: > > > > Ok. How about set the safe_mode_exec_dir to /dev/null then ? > > >

[PHP] Sending PHP to different targeted frames

2004-07-06 Thread Robert Frame
I've created a web page utilizing 3 frames (header, index, main). In the frame named 'main' I have a form setup for logging into a MySQL database. On a successful login I want to change the html in 'index' and 'main'. The active frame 'main' is easy, as the new html code will go into this window b

[PHP] Pocket Excel files?

2004-07-07 Thread Robert Sossomon
Anyone know how to write pocket excel files and how to write the contacts file for pocket PC? I want to let my users download files straight to their pocket PCs without having to run a conversion process in the middle. Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Client IP

2004-07-07 Thread Robert Sargant
I've used this function before a couple of times, but I haven't tested it fully. Give it a go if you want. /*** BEGIN CODE ***/ // Function get_ip function get_ip() { // List of possible ip sources, in order of priority $ip_sources = array ( "HTTP_X_FORWARDED_FOR", "HT

[PHP] Sending email without an email server

2004-07-13 Thread robert mena
Hi, I have a small script hosted in a win32/apache/php4 enviroment where I do not have a local email server. I was wondering how could I send emails either connecting directly to the mx or sending through a relay. regards. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Log all GET AND POST?

2004-07-15 Thread Robert Sossomon
I was wondering if anyone knew of a way to log all GET and POST information being passed to a log file? Thanks, Robert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Dynamic to Static

2004-07-15 Thread Robert Sossomon
I need it, but at this time the functional way to do it was with leaving the pages dynamic. That being said, if all you want to do is spit out numerous pages (based off MySQL data) and put them on the web for people to look at, I would be happy to shoot you my PHP page to work it out. Robert -- PH

<    20   21   22   23   24   25   26   27   28   29   >