[PHP] PHP New Year

2003-12-31 Thread Larry Brown
Happy New year all! Looking forward to bigger better things this year. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] How do I protect downloadable files?

2003-12-30 Thread Larry Brown
the headers necessary to start the download. This way the end user never has to have direct access to the download directory and you don't have to copy the file into a temporary directory. Larry -Original Message- From: news.php.net [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 30

RE: [PHP] How do I protect downloadable files?

2003-12-30 Thread Larry Brown
Time for them to upgrade to OSX... I've not tried to crack that nut. Is there anyone here who has successfully managed headers for Mac users? It's hard to believe it hasn't been done. -Original Message- From: Kim Steinhaug [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 30, 2003 8:04

RE: [PHP] HTML via echo or not

2003-12-29 Thread Larry Brown
I agree. I think embedding the ?php ? tags is messy and harder to follow. I do however, treat echo like print. ie echo The thought would \have\ to be clear.; I've not use CR,. I'll have to look at that. Thanks -Original Message- From: Robin Kopetzky [mailto:[EMAIL PROTECTED] Sent:

RE: [PHP] programming the onclick() event in an anchor

2003-12-25 Thread Larry Brown
tag responds to onChange. You'd have to try it out. Larry. -Original Message- From: Evan Nemerson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 25, 2003 2:59 AM To: Peter Walter; [EMAIL PROTECTED] Subject: Re: [PHP] programming the onclick() event in an anchor On Wednesday 24

RE: [PHP] Can't upload file greater than 11kb

2003-12-23 Thread Larry Brown
will show $_FILE['name'] and it will show $_FILE['tmp_name'] having the temporary file. Then you take that hidden tag out and do the same the $_FILE['tmp_name'] variable will be empty since it did not recieve the file. So I know at least in my case that the hidden field has to be there. Larry

RE: [PHP] Re: progress in PHP

2003-12-23 Thread Larry Brown
How does perl show progress of the upload if it is a server side scripting language and php can't do it because it is server side? -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 23, 2003 12:46 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re:

Re: [PHP] onChange

2003-12-22 Thread Larry E . Ullman
a form, for example). For what you're trying to do, you'll need to use JavaScript, which is client side. You can use PHP to help create the JavaScript, though. There are some ready-made scripts available for this purpose (search Google). Hope that helps, Larry -- PHP General Mailing List (http

[PHP] using PDI to pull from data already read into a variable?

2003-12-22 Thread Larry Brown
the db in a query and then handing it to the PDI functions would be less intensive than writing it out, parsing it, and then ultimately deleting it from disk again. Any help would be greatly appreciated... TIA Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] PROBLEMS WHEN EXTRACING DATA FROM MSSQL DATABASE WITH PHP

2003-12-22 Thread Larry Brown
Is your field too small? MySQL doesn't complain when you give it a string longer than it can accept based on the field's size. It just cuts off what doesn't fit :-) -Original Message- From: Dale Hersh [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 6:50 PM To: [EMAIL

RE: [PHP] PROBLEMS WHEN EXTRACING DATA FROM MSSQL DATABASE WITH PHP

2003-12-22 Thread Larry Brown
My bad, didn't read far enough... -Original Message- From: Chris W. Parker [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 7:04 PM To: Larry Brown; Dale Hersh; PHP List Subject: RE: [PHP] PROBLEMS WHEN EXTRACING DATA FROM MSSQL DATABASE WITH PHP Larry Brown mailto:[EMAIL

RE: [PHP] Re: HTTP headers, IE and downloading

2003-12-22 Thread Larry Brown
://mysite.com/myphpPDFscript.php?pdf=anything.pdf and after all of that it worked. Which ones you may need is beyond me. I do not know enough about how the different browsers handle headers and really only needed to get that one functionality working for me. I hope examining it can help... Larry

RE: [PHP] File upload problem

2003-12-20 Thread Larry Brown
According to the documentation you have to have the maxfilesize tag before the input tag. -Original Message- From: Dino Costantini [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 6:34 PM To: [EMAIL PROTECTED] Subject: [PHP] File upload problem i'm trying to write a page

[PHP] mysql load_file retreival

2003-12-20 Thread Larry Brown
I have set up a script to recieve a pdf file and store it in a mysql db using update db set field=load_file('fileIncludingFile') where id=$id. Afterwards I can see the file has been uploaded into the blob field successfully and without errors. Now I want to get the file back out. I set up a

RE: [PHP] sessions problem

2003-12-20 Thread Larry Brown
Make sure you have session_start(); at the beginning of each script you run from the time you start inserting variables to the time you want the session to end. -Original Message- From: Nitin [mailto:[EMAIL PROTECTED] Sent: Saturday, December 20, 2003 10:48 AM To: PHP-General Subject:

RE: [PHP] mysql load_file retreival

2003-12-20 Thread Larry Brown
1:24 PM To: PHP List Subject: RE: [PHP] mysql load_file retreival LOAD_FILE() shouldn't be escaping the data. Are you actually calling : echo header()? the header function should not be echoed. header('Content-type: application/pdf'); echo result[0]; -Original Message- From: Larry Brown

RE: [PHP] mysql load_file retreival

2003-12-20 Thread Larry Brown
the file on upload, base64 encoded it and stored it directly to the db. Then on retrieval, unencoded and handed it off with content type, size, name, and application information in the header. It works very nicely. Thanks again... Larry -Original Message- From: Chris [mailto:[EMAIL

RE: [PHP] mysql load_file retreival

2003-12-20 Thread Larry Brown
Subject: RE: [PHP] mysql load_file retreival Gald to hear it works now. Are you base64 encoding it for any particular reason? Seems to me that it would waste a lot of db space as base64 encoding adds quite a bit to the filesize. Chris -Original Message- From: Larry Brown [mailto:[EMAIL

Re: [PHP] Re: PHP SESSION DURATION.....

2003-11-25 Thread Larry E. Ullman
a start... Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] nusoap

2003-11-11 Thread Larry Brown
this is actually an array. I just need someone who has had experience with this toolkit for a couple of issues. Thanks for any assistance, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] recursive acronym - PHP

2003-11-01 Thread Larry E . Ullman
because it uses itself in its definition. Another example: GNU, for GNU's Not Unix. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php temp table question (for mysql)

2003-10-31 Thread Larry Brown
[mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2003 4:43 PM To: Larry Brown; PHP List Subject: Re: [PHP] php temp table question (for mysql) From: Larry Brown [EMAIL PROTECTED] Does anyone know whether the use of persistent connections with php will allow a temp table created by a script

Re: [PHP] Tips on books and tutorials

2003-10-30 Thread Larry E . Ullman
. Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Echo issue RESOLVED!

2003-10-30 Thread Larry E . Ullman
. And this IS a PHP mailing list. So might I be so bold as to suggest the end of the Mac vs Windows vs Linux thread? (Since this is, um, a *PHP* mailing list.) Larry PS This thread also stopped being about ECHO a long, long time ago. -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] PDFlib not working with explorer based on PHP created file in memory

2003-10-29 Thread Larry Brown
If anyone can help, please... I have a page that points to a PHP page that dynamically creates a pdf file using PDFlib. The page uses a link such as site.com/page.php?variable=value. That in turn executes the script that uses the variable/value to pull info from the db and generate the page.

RE: [PHP] PDFlib not working with explorer based on PHP created file in memory

2003-10-29 Thread Larry Brown
My apologies for waisting anyone's time. I found the posting in the archives that had the correct code to use. -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2003 3:39 PM To: PHP List Subject: [PHP] PDFlib not working with explorer based

Re: [PHP] multiple entries for a variable passed with GET

2003-10-29 Thread Larry E . Ullman
into an array (by making the HTML form input name manufacture[]) and you'll be good to go. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Menu populated based on previous menu

2003-10-28 Thread Larry E . Ullman
selection is made without adding a SUBMIT button and loading a second page. You can't do this with PHP (server-side), you'll need to use JavaScript (client-side). Check out some JavaScript sites for examples, then use PHP to populate the JavaScript arrays. Larry -- PHP General Mailing List (http

[PHP] php temp table question

2003-10-27 Thread Larry Brown
Does anyone know whether the use of persistent connections with php will allow a temp table created by a script to linger around and cause a problem with the next execution of the script when it tries to create the temp table again? Also if it does present a problem with the next script execution

[PHP] php temp table question (for mysql)

2003-10-27 Thread Larry Brown
Does anyone know whether the use of persistent connections with php will allow a temp table created by a script to linger around and cause a problem with the next execution of the script when it tries to create the temp table again? Also if it does present a problem with the next script execution

RE: [PHP] PHP with Frames (cont.)

2003-10-27 Thread Larry Brown
Are you trying to access variables between frames or just get a php script to run when it is one frame. I have php pages running in frames in a number of places. You could not access variables between the frames though. You would have to use a client side script to do that. You could have

Re: [PHP] Idea for new operator

2003-10-26 Thread Larry E . Ullman
it! Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] search by keyword

2003-10-21 Thread Larry E . Ullman
indexed your columns as well. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Whats more efficient? ( echo ; or ?php echo ? )

2003-10-21 Thread Larry E . Ullman
is easier for you to code. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php|cruise - do unto others...

2003-10-20 Thread Larry E . Ullman
, no? Not trying to be cranky, just worried that the 16 emails I've already seen in the past hour may not be the end of it! Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP within Frames

2003-10-19 Thread Larry E . Ullman
. But, considering the information provided, that's just a guess. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Creating a Search field

2003-10-09 Thread Larry E . Ullman
uses indexes. Again, see the MySQL manual for more. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Tracking IP Addresses

2003-10-03 Thread Larry Rosenman
MaxMind... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX

Re: [PHP] Generate Receipt Number

2003-09-30 Thread Larry E . Ullman
manual for more. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Does the AOL browser break any standards?

2003-09-29 Thread Larry Rosenman
would be? -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX

Re: [PHP] Subcategories in php

2003-09-20 Thread Larry E . Ullman
INTO subcategories (category_id, subcategory_name) VALUES ($cat_id, '$subcat_name'); Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] HTTP_GET_VARS VS. _GET

2003-09-14 Thread Larry E . Ullman
/manual/en/language.variables.predefined.php Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] array encapsulate

2003-09-12 Thread Larry E . Ullman
if ($_POST[detail][11][116] !$_POST[detailtext][19][114]) { How can I encapsulate the array so it is a multi-dimensional array and not just a string length? I'm not exactly sure what you're array structure is but that syntax is correct. $_POST['key1']['key2']... Larry -- PHP General Mailing

Re: [PHP] function returning array

2003-09-07 Thread Larry E . Ullman
it with list ($var1, $var2, ...) = getData(); Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Function calling from url

2003-09-06 Thread Larry E . Ullman
(PHP_FILENAME) and that page can call the function. If the action attribute was script.php?p1=xp2=y Then script.php would have function_name ($_GET['x'], $_GET['y']); You'll probably want to do some validity checking on the GET data, just in case. Hope that helps, Larry PS Just to be clear: you can't

Re: [PHP] webserver for mac

2003-08-26 Thread Larry E . Ullman
PHP). There may be others but those are the big two, I believe. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] error problem

2003-08-14 Thread Larry E . Ullman
to change your trigger. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Display variable with spaces

2003-08-14 Thread Larry E . Ullman
is the thisisa . It simply avoids the spaces. Can anyone tell me why this is happening..?? I am sure it is something pretty minor but I just cant seem to get it right. You need to quote your value attribute. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Stop neurotic posting - my take on it.

2003-08-14 Thread Larry R. Sieting
would be: That can be done with a regular expression. The function you're looking for is called preg_match. http://php.net/preg_match; I fail to see the difference. Me too. Besides, both answers are wrong. You should use strpos(). ---John Holmes... Larry R. Sieting -- PHP General Mailing List

Re: [PHP] mysql_real_escape_string

2003-08-04 Thread Larry E . Ullman
The following function is from Larry Ullman's PHP and mySQL on page 217 - script 6.8 - in which there is a connection to a mySQL database using PHP. My question is that I'm not sure of the global variable $dbc. Hello Anthony, The mysql_real_escape_string() requires a connection to the database

Re: [PHP] Rounding issue

2003-07-29 Thread Larry E . Ullman
$x = 4.5012412; echo round($x, 2); // results in 4.5 --- however I want 4.50! I want 2 decimal places! echo number_format ( round ($x, 2), 2); Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MIME decoder for use as the target of an Alias?

2003-07-21 Thread Larry Rosenman
into a database. I really don't feel like reinventing the wheel on the mime side. PHP 4.3.x, if it matters. Thanks! LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive

[PHP] else needed?

2003-07-19 Thread Larry Brown
a... if (this) {do that;}else{echo ;} I try using continue in the else but get errors about using continue on level 1 or something to that affect. I'm assuming that continue is only used in loops. It's amazing how far I can code things without these little foundation level bits of information ;-) Larry S

[PHP] console script html tags?

2003-07-14 Thread Larry Brown
How can I rid myself of the html tags around error messages when writing console scripts? (Besides avoiding errors) Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Client script opensource plea

2003-07-13 Thread Larry Brown
dealing with it and consequently I haven't a work around. My apologies for presenting a clearly OT question, but I know there are a ton of experienced developers here and I reaching for someone who might have dealt with this. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General

[PHP] php mysql array question

2003-07-11 Thread Larry Brown
is used a lot. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Need a function to calculate time difference.

2003-07-02 Thread Larry R. Sieting
mysql_error(); } } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Gilebert/Larry

Re: [PHP] Installation for OS X

2003-06-30 Thread Larry E . Ullman
support, GD, and much, much more. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] time calcs

2003-06-29 Thread Larry R. Sieting
I need to break the stored time values apart and do calcs on each segment? I am not storing the calculated time. Larry R. Sieting -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Newbie and learning

2003-06-27 Thread Larry R. Sieting
to it and read sections of it at a time (chunk). And I hope that I will be able to answer most of my own questions there or in other resources before I have to submit to the list. Thanks. Larry R. Sieting -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] php.ini

2003-06-25 Thread Larry E. Ullman
methods won't help. To create a php.ini file, you could download the PHP source code, take its php.ini and drop it in /usr/local/lib Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Ticketing System?

2003-06-25 Thread Larry Rosenman
, but look at RT:Request Tracker, at http://www.bestpractical.com/ Cheers, Andreas Cahen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812

[PHP] stream_wrapper_register

2003-06-20 Thread Larry E. Masters
) { // put sql here return true; } function stream_unlink($path, $mode, $options, $opened_path) { // put sql here return true; } and so forth Thanks, Larry E. Masters aka PhpNut -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] IE Pagelength issue

2003-06-09 Thread Larry Brown
I found the problem. The script was creating each table within the previous table. Apparently there is a limit of 25 nested levels for IE. I separated each table and it loads all of them ok. Thanks John, Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From

RE: [PHP] IE Pagelength issue

2003-06-08 Thread Larry Brown
Yes, the entire page is visible when selecting view source. And again, it does view ok in Mozilla. I will try breaking the table into smaller tables and see if that is it. I won't have access till Tuesday. If anyone has any other ideas feel free to throw in. Larry S. Brown Dimension Networks

[PHP] IE Pagelength issue

2003-06-07 Thread Larry Brown
length and the bottom is cut off on IE6. I haven't tried any earlier versions of IE but Mozilla loads the entire page without this problem. Has anyone run across this? Is there a way around it? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http

RE: [PHP] IE Pagelength issue

2003-06-07 Thread Larry Brown
Just as an additional note: the page has one continuous table so another potential problem would be a limit to the length of a table? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED] Sent: Saturday, June 07, 2003 1:55

RE: [PHP] IE Pagelength issue

2003-06-07 Thread Larry Brown
information in addition to removing any one of them. So there are various buttons throughout. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, June 07, 2003 6:08 PM To: 'Larry Brown'; 'PHP List' Subject: RE

[PHP] mysql field getting cut off

2003-05-30 Thread Larry Brown
at the php script in the variable $field and I have used the mysql client to give the same command with St. Petersburg, FL as the value and it accepts it without a problem. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] mysql field getting cut off

2003-05-30 Thread Larry Brown
That, indirectly, is exactly what happened. I have a subsequent screen for modifying the results. I must have gone back into that screen to change something else and since it only pulled the St. when I applied it it changed the field in the database. Thanks a lot. It seemed weird. Larry S

Re: [PHP] RedHat

2003-04-05 Thread Larry E. Ullman
newsgroup 3) A RedHat mailing list 4) A RedHat forum 5) A RedHat __, not the PHP general mailing list (since your question concerns RedHat packages). I expect that a RedHat support would be much more qualified to answer this question and your original one (when they'll upgrade). Larry -- PHP

Re: [PHP] Session Theft

2003-03-28 Thread Larry E. Ullman
pages. HTTP_USER_AGENT won't always be unique and it's not foolproof but it is a little extra security with minimal effort. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] uploading large files through php

2003-03-28 Thread Larry E. Ullman
will accept. post_max_size = 8M Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ob_start problem

2003-03-22 Thread Larry E. Ullman
using the ob_gzhandler function. Or so says a user-contributed note in the PHP manual... Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] upload files and file types

2003-03-22 Thread Larry E. Ullman
. Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Separators in variable values causing MySQL commands to fail

2003-03-22 Thread Larry E. Ullman
() functions. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Running DB on different server

2003-03-20 Thread Larry E. Ullman
Can the DB be on a different server than the page server? Yes. For example, with MySQL, you just need to create a user with permission to connect from a remote computer by setting the appropriate host value. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] PHP Devel Environments???

2003-03-20 Thread Larry E. Ullman
The only product I know of that fits your description (I think) is JaneBuilder (http://www.seejanecode.com). It's currently available for Mac and will be on Windows soon. Never used it myself... Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] table cell space under image in IE

2003-03-13 Thread Larry Brown
of sized to see the effect and the smallest size it will move to is approx 10pxls below the bottom of the image. Very frustrating! I know this is not exactly on topic but I produce all html by php and I don't want to go out and add myself to an html list (if there is such a thing). TIA Larry S. Brown

Re: [PHP] time() question

2003-03-13 Thread Larry E. Ullman
a date/time out of a MySQL database, use MySQL's DATE_FORMAT() function to format the value. For that matter, you can use MySQL's NOW() function (or others) when inserting the time. Otherwise, just in PHP, you can use the DATE() function to format dates. Larry -- PHP General Mailing List (http

RE: [PHP] table cell space under image in IE

2003-03-13 Thread Larry Brown
('pic3') onMouseOut=change_back('pic3') /FORM /TD /TR Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 12:07 PM To: Larry Brown; PHP List Subject: Re: [PHP] table cell space under image

RE: [PHP] Re: table cell space under image in IE

2003-03-13 Thread Larry Brown
I just posted the code and have the tags on separate lines for clarity, but in the source they are on the same line with no space between the tags. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Roman Sanchez [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: [PHP] table cell space under image in IE

2003-03-13 Thread Larry Brown
What kind of @%#$%#! is that? Why would they have /form take up visible space? Hmm, I guess I'll have to find a new angle or hide the closing form beyond the table. Thanks... Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Roman Sanchez [mailto:[EMAIL

[PHP] Version 5?

2003-03-06 Thread Larry Brown
Someone mentioned a facet of version 5 to be expected that I am really looking forward to. Does anyone know what the release target date is? I didn’t see any mention of it on php.net. Larry S. Brown Dimension Networks, Inc. (727) 723-8388

Re: [PHP] Browser Sniffing

2003-03-04 Thread Larry E. Ullman
of every page and voila! Hope that helps, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL

2003-03-03 Thread Larry E. Ullman
edition: http://www.kitebird.com/mysql-book/ It discusses what's new in this edition. Paul DuBois is also very active on the MySQL mailing lists so your question would probably get a more detailed answer there. Also, in all likelihood, the first edition may not even be available anymore. Larry

Re: [PHP] MySQL

2003-03-03 Thread Larry E. Ullman
What are some of the more active MySQL lists? Do you have a URL or two? http://www.mysql.com/documentation/lists.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] deciperhing oop

2003-03-03 Thread Larry Brown
Selection to $dbase failed.); } } } $dbn = new dbConnect(localhost,3306,bob,hjhyt4kl5); $dbn-setDbase(main); So why can't I use $db? Isn't the statement $this-db=$db making it available to the setDbase function? Larry S. Brown Dimension Networks, Inc. (727) 723-8388

RE: [PHP] deciperhing oop

2003-03-03 Thread Larry Brown
Thank you everyone for helping. I didn't know you have to put $this- in front of all variables in the class. You learn something new every day ( I thought you only needed to use that once to make the variable available everywhere in the class up till now). Larry S. Brown Dimension Networks, Inc

Re: [PHP] Yarrrrgggghhhhh || Simplest php question in existence........

2003-03-03 Thread Larry E. Ullman
Any performance issues re: using fetch_row vs. fetch_array? No significant performance issues. If you want to be precise and save a little overhead, use $row = mysql_fetch_array ($result, MYSQL_ASSOC); The returned record will ONLY be returned as an associative array. Larry -- PHP General

RE: [PHP] Emacs?

2003-02-27 Thread Larry Brown
Oops...I stand corrected. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Matt Giddings [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 12:26 AM To: 'Larry Brown'; 'PHP List' Subject: RE: [PHP] Emacs? Don't you mean 42? -Original Message

RE: [PHP] Emacs?

2003-02-26 Thread Larry Brown
25 Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Sascha Braun [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 12:00 PM To: PHP General list Subject: [PHP] Emacs? How many Persons in this List are using Emacs as there default Editor? -- PHP

Re: [PHP] Include files

2003-02-25 Thread Larry E. Ullman
out the relevant pages of the PHP Manual: www.php.net/include and www.php.net/include_once and www.php.net/require and www.php.net/require_once Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Please help!!

2003-02-23 Thread Larry E. Ullman
that. This is a MySQL database issue and can be solved once you take a look at your query (which is printed by the script) and the database scheme. Best wishes, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] button and /button

2003-02-23 Thread Larry Brown
The onClick should be onClick=window.location(newpage.php) and this has nothing to do with php. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 12:15 AM To: Sunfire Cc: [EMAIL

RE: [PHP] MAC address user recognition?

2003-02-21 Thread Larry Brown
coming in. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Leo Spalteholz [mailto:[EMAIL PROTECTED] Sent: Friday, February 21, 2003 12:59 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] MAC address user recognition? On February 20, 2003 08:13 pm, Jason Sheets

[PHP] mysql query manipulation vs php results manipulation

2003-02-19 Thread Larry Brown
How do you determine whether or not it is faster/more efficient to run a complicated query or to run multiple simple queries and join / manipulate the results with PHP? Larry S. Brown Dimension Networks, Inc. (727) 723-8388

RE: [PHP] mysql query manipulation vs php results manipulation

2003-02-19 Thread Larry Brown
My apologies for the prior html version, I forgot to change back to txt. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 On Wed, 19 Feb 2003, Larry Brown wrote: How do you determine whether or not it is faster/more efficient to run a complicated query or to run multiple simple

Re: [PHP] Adding slashes

2003-02-19 Thread Larry E. Ullman
PHP seems to automatically be escaping quotes on my $_POST variables. magic_quotes_gpc is set to On in your php.ini file. You can use stripslashes()to undo its effect or alter this behavior on a script-by-script basis using ini_set(). Larry -- PHP General Mailing List (http://www.php.net

Re: [PHP] Adding slashes

2003-02-19 Thread Larry Rosenman
List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing

<    2   3   4   5   6   7   8   9   >