[PHP-DB] php and mysql

2002-12-06 Thread Dallas
abase THANKS A LOT, it will really help dallas freeman -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] thanks

2002-12-08 Thread Dallas
i've been looking for a good php site thanks -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Re: Search Script

2002-04-25 Thread Stuart Dallas
Jennifer I suggest you check out MySQLs full text indexing capabilities. If you create a fulltext index on the text fields you want to search you can use the MATCH function. This will perform a fuzzy matching search that returns results in order of relevance. For details see http://www.mysql.com/

Re: [PHP-DB] How to store results into a session variable..

2002-04-30 Thread Stuart Dallas
On 30 Apr 2002 at 11:56, Jas wrote: > I need a tutorial or example on how to take a result from an mysql > query and place it into a session variable. Please help? Thanks in > advance, Jas This is what I use... while ($res = mysql_fetch_assoc($query)) { $retval[] = $res; } $retval is then

Re: [PHP-DB] Where to get MySQL help

2002-05-10 Thread Stuart Dallas
On 10 May 2002 at 17:24, Todd Cary wrote: > I may need to convert an Interbase program to MySQL and I have some > questions about MySQL. http://www.mysql.com/ would probably be a good place to start. -- Stuart -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP-DB] dropping one word from column entries

2002-05-29 Thread Stuart Dallas
Ed Gorski <[EMAIL PROTECTED]> wrote: > use: > > $name="Mouse Housing Products"; > $name=str_replace("Products","",$name); > > also the RTFM() function works too I'd also trim it to get rid of any extra spaces that are left: $name = trim(str_replace("Products","",$name)); -- Stuart -- PHP

Re: [PHP-DB] date format display

2002-06-10 Thread Stuart Dallas
Monday, June 10, 2002, 2:00:59 PM, you wrote: > in my mysql-db I have a date_tbl with this format: (20020531). > how is possible in PHP do display date_tbl's values in a more human-readable > format like 05-31-2002 or 31/05/2002 ? Look at date and strtotime... http://www.php.net/date http:/

Re: [PHP-DB] problem with login script

2002-06-14 Thread Stuart Dallas
On Friday, June 14, 2002, 2:51:51 PM, Jason Wong wrote: > On Friday 14 June 2002 20:23, Hutchins, Richard wrote: >> I've been working with includes recently and that's the standard syntax. >> Furthermore, if you put the functions.php file in a different directory, >> remember to use double slash

Re: [PHP-DB] making sub dirs ?

2002-06-16 Thread Stuart Dallas
On Monday, June 17, 2002 at 4:45:30 PM, Dave Carrera wrote: > I wish to create a subdirectory in my images directory using my visitors id > number. Have a look at: http://www.php.net/mkdir -- Stuart -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

[PHP-DB] images - BINARY -> HTML

2003-03-06 Thread Dallas Freeman
Hey, Just something easy, using a MySQL database, I don't know how to convert Binary to a image file to be placed into html. Could someone please help. Thanks Dallas Freeman

[PHP-DB] images - BINARY -> HTML

2003-03-06 Thread Dallas Freeman
Please ignore my previous email, I figured out how. Thanks anyways. -Original Message- From: Dallas Freeman [mailto:[EMAIL PROTECTED] Sent: Friday, 7 March 2003 1:51 AM To: '[EMAIL PROTECTED]' Subject: images - BINARY -> HTML Hey, Just something easy,

[PHP-DB] Picture Upload

2003-03-10 Thread Dallas Freeman
Is there a possibility that you can resize an image before uploading to the server? If so, how? Thanks, Dallas Freeman

RE: [PHP-DB] Picture Upload

2003-03-11 Thread Dallas Freeman
there is a possibility that php can change the size of an image before it uploads it to the server (so it changes size on the end-user's computer & not on the server - that way there would be a shorter upload time). Thanking You, Dallas Freeman -Original Message- From: Luke Wool

[PHP-DB] Don't Understand

2003-03-12 Thread Dallas Freeman
Help! I don't understand how to use the gdImageCopyResized gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int destW, int destH, int srcW, int srcH) Thanking You Dallas Freeman * is there a simpler way to change the size of an image?

RE: [PHP-DB] Don't Understand

2003-03-12 Thread Dallas Freeman
Dear Mark, Thanks, very useful! Can you direct me where for help on getting an image to resize before it is even uploaded (inother words, it will resize itself on the end-user's machine and then upload to the database). Thanking You, Dallas Freeman -Original Message-

RE: [PHP-DB] Don't Understand

2003-03-12 Thread Dallas Freeman
By the looks of it, I will have to create something in Delphi or some-type of web application. Thanks, Dallas Freeman -Original Message- From: mike karthauser [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 March 2003 9:50 PM To: Dallas Freeman Subject: Re: [PHP-DB] Don&#

[PHP-DB] Cropped Text

2003-03-12 Thread Dallas Freeman
I dunno what it is called so that is why I am asking, so that I can search the web about it. What do you call the method of cropping text back, so that there are a limited number of characters shown, the rest is cut off. Thanking You, Dallas Freeman -- PHP Database Mailing List (http

[PHP-DB] Substring ?

2003-03-20 Thread Dallas Freeman
I know how to use it with MySQL but how do you use the function substring with a variable? Thanks Dallas Freeman

RE: [PHP-DB] Substring ?

2003-03-20 Thread Dallas Freeman
Dear Mark, Thanks for your note but no one really explains the function at all, they just write the function and that's it. Thanks for giving me the correct function name to use, from what I found, substring was the name of the function. Thanking You, Dallas Freeman -Ori

[PHP-DB] PHP-DB Rocks

2003-03-20 Thread Dallas Freeman
Just a quick message to say that this email forum is the best I've seen. Everyone responds quickly, the forum contains experts who really know there stuff, and nobody will snob you off. Thanks to those who have replied to my messages and to others. It has been a really good learning experienc

[PHP-DB] Re: [PHP] PHP EOL

2011-07-02 Thread Stuart Dallas
mented mail servers (rare these days, but it happens). Incidentally, CR only applies to Mac OS9 and earlier. OSX uses LF due to its BSD roots. For a near-complete list, see "Representations" here: http://en.wikipedia.org/wiki/Newline. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/

[PHP-DB] Re: [PHP] PHP EOL

2011-07-03 Thread Stuart Dallas
you accept" - if it wasn't like that the internet would fall apart. I encourage you to do your part to do things right, but it's completely up to you if you don't want to follow the users' manual. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/ On Jul 2, 2011, at 8

[PHP-DB] Re: [PHP] Re: [PHP-DB] Re: [PHP] PHP EOL

2011-07-03 Thread Stuart Dallas
the various protocols used on the internet, not the PHP manual which I believe you think I meant. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/

[PHP-DB] Re: [PHP] Re: [PHP-DB] Re: [PHP] Re: [PHP-DB] Re: [PHP] PHP EOL

2011-07-04 Thread Stuart Dallas
because you usually cannot tell what OS the computer you're talking to is running. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/