RE: [PHP-WIN] mysql tools lost .......

2003-01-17 Thread Sean Malloy
http://www.dbtools.com.br -Original Message- From: toby z [mailto:[EMAIL PROTECTED]] Sent: Saturday, 18 January 2003 4:33 PM To: php hlp list Subject: [PHP-WIN] mysql tools lost ... hi guys im stuck bad as usual . mysql.com and datanamic.com r both down .. god alone knoz y

[PHP-WIN] mysql tools lost .......

2003-01-17 Thread toby z
hi guys im stuck bad as usual . mysql.com and datanamic.com r both down .. god alone knoz y they both had to go down when i despretely needed em is there any other tool to design a mysql db so that its sql gets generated jst as the designning is done ? or cud anyone tell me anyother

RE: [PHP-WIN] SQL-query

2003-01-17 Thread Sean Malloy
Why the hell would you want to do that? It looks ugly? I'll tell you what, when you have 8 records in the database, and #34,501 is missing, I wonder if you'll notice, or want to write code to fill, the "hole" if you really want to fix the hole (as much as I think you are seriously wasting yo

Re: [PHP-WIN] SQL-query

2003-01-17 Thread Dash McElroy
Uhm, I was actually in favor of auto_increment fields... auto_increment should protect against data inconsistency by providing a unique and new number for new data so it does not "inherit" old data (in other tables). If you really wanted to do your own auto_increment, it wouldn't be hard, but why

RE: [PHP-WIN] SQL-query

2003-01-17 Thread Sean Malloy
I'd fire any person working for me who was writing their own code to handle incrementing a unique ID field. If you have to insert a record after deleting one, with the same id, you have some serious relationship issues in your data. And if you _REALLY_ have to, then lock the data, turn auto incre

php-windows Digest 18 Jan 2003 00:11:22 -0000 Issue 1541

2003-01-17 Thread php-windows-digest-help
php-windows Digest 18 Jan 2003 00:11:22 - Issue 1541 Topics (messages 17937 through 17954): Re: It just doesn't make sense! 17937 by: Stephen Edmonds 17943 by: Brian 'Bex' Huff PDF 17938 by: Brian McGarvie 17946 by: Dash McElroy Undefined variable: PHP_SELF

Re: [PHP-WIN] SQL-query

2003-01-17 Thread Cam Dunstan
Amen to that - I really believe you are better off (if you have the freedom to do so) changing autoincrement fields to an integer type and managing the incrementing yourself. In addition to the problem Dash mentions there is yet another "gotcha" - if you are ever faced with having to combine t

RE: [PHP-WIN] Re: PHP Search

2003-01-17 Thread Chris Kranz
You could also take lumps of HTML. Read it all into one string, the break it out into the tags. So everything inside is brought out. If there's a colour change in there, that can be brought out too. Use simple reg exp's to pull out everything between tags. You could then categorise it in an a

Re: [PHP-WIN] Re: PHP Search

2003-01-17 Thread Dash McElroy
Radovan, Searching for words that are not the same color as the background could be interesting depending on a lot of things. 1. Does the page use CSS? 2. Are background/font colors defined as "red" or "#FF"? 3. Where are background colors defined? (i.e. or or or ...) (you already answered

[PHP-WIN] Re: PHP Search

2003-01-17 Thread Radovan Radic
Either noone can read this message, or noone can help about it? Come on ppl give me some feedbacl "Radovan Radic" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all > > I got (i think) heavy task for my school project. I > hope someone can help > me. > Scri

Re: [PHP-WIN] PHP/PWS 3.0

2003-01-17 Thread Luis Ferro
Or better yet... try Apache... (www.apache.org)... or switch to a better application launcher like w2k... Cheers Luis Ferro Waldemar Brand Neto wrote: According Micro$oft PWS will not work under Windows ME, try Windows 98 or 2000. - Original Message - From: "Lewis J Hannah" <[EMAIL PRO

[PHP-WIN] re: What kind of Editor you used to build PHP script ?

2003-01-17 Thread Roland Tarver
Definately, I use this all the time and it's great. You can download *LOADS* of great plugins for it It's recommended by the w3c. Upload files to you're web server directly from the program, so i guess it's an 'live' IDE for PHP. If you're web server has postGreSQL or MySQL your laughing.

Re: [PHP-WIN] $PHP_SELF & change of bgcolor ?

2003-01-17 Thread Dash McElroy
Sure thing. Hopefully you have a central include() file... that would make this easier so you don't have to put this code in all of your pages. if ($_SERVER['PHP_SELF'] == "blahblah.php") { $bgcolor = "white"; //change as needed $text = "blue"; //change as needed } else { $bgcolor = "b

[PHP-WIN] $PHP_SELF & change of bgcolor ?

2003-01-17 Thread Wolfgang Schneider
Hi a bit of a newbie question ... :-) Can php be used to set the bgcolor in a navigation menu depending on what page one is on? Let's say the menu consists of table with 4 cells / options, and the option corresponding to the current page (somehow use $php_self to determine?) have blue text on w

Re: [PHP-WIN] PDF

2003-01-17 Thread Dash McElroy
If the PDF forms you "print on top of" are forms, you can use FDF (Forms Data Format) to fill out the form. There are several FDF options. One is to use Adobe's FDF program thingie. Others are listed in the comments on this page (http://www.php.net/manual/en/ref.fdf.php). I used one of the ones lis

Re: [PHP-WIN] SQL-query

2003-01-17 Thread Dash McElroy
Piotr is right. SQL shouldn't let you do that, if only for possible consistency errors. Imagine if you had id 3 referenced in some other table and then you put new data in the primary table with id of 3. Then all the other stuff referring to 3 would then refer to the new data. Not a good thing. I'

Re: [PHP-WIN] Help needed about mailing!

2003-01-17 Thread Dash McElroy
Try telnetting to port 25 of the server (armed with SMTP commands, of course) and see if it will let you connect. Perhaps the new exchange server of yours is disallowing relaying or something else odd. Works great with mine, as long as I email to my internal domain (won't let me relay. I've tried

[PHP-WIN] Re: It just doesn't make sense!

2003-01-17 Thread Brian 'Bex' Huff
Id just like to say, whaa??? maybe this is some wierd scope problem... what version of PHP are you using? is $AppendStringToURL a global on the page? You might be able to work around this by declaring it global, but be careful of doing this too often ;) You also might have to echo the v

[PHP-WIN] Re: Subject: SQL-query

2003-01-17 Thread Neil Smith
At 12:10 17/01/2003 +, you wrote: Message-ID: <000a01c2be19$7e0df920$9df81e0a@elstudion> From: "Bobo Wieland" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Date: Fri, 17 Jan 2003 12:13:35 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-9" Content-Transfer-Encoding: 7b

Re: [PHP-WIN] SQL-query

2003-01-17 Thread Piotr Pluciennik
Hi, I don't use MYSQL, but the problem is common for databases. One of the idea of auto increment field is to have unique identifiers, so you can't insert a record with auto increment fields set by yourself. It's always done by DB. So you can't fill a "hole" in numbering after deleting record. Of

[PHP-WIN] R: [PHP-WIN] Undefined variable: PHP_SELF -- Need Help

2003-01-17 Thread Darvin Andrioli
Hi Ray you may use $_SERVER['PHP_SELF'] or turn on the parameter 'register_global' For more info: http://www.php.net/manual/en/reserved.variables.php#reserved.variables.serve r Darvin > -Messaggio originale- > Da: Ray [mailto:[EMAIL PROTECTED]] > Inviato: venerdì 17 gennaio 2003 13.40 >

[PHP-WIN] Undefined variable: PHP_SELF -- Need Help

2003-01-17 Thread Ray
Hello all, I get lots of these errors when I try using PHP_SELF as a variable. Is there something in my php.ini file I have to change, or something I need to install. I have IIS5, MySQL4.0.8, and PHP 4.3. Also running windows 2000 advanced server. Thanks, Ray -- PHP Windows Mailing List (http:

[PHP-WIN] PDF

2003-01-17 Thread Brian McGarvie
I'm looking to find out if PHP has the ability to do this... OK I'm looking for a solution that could do the following. We require to generate PDF files that can then be emailed or printed & posted to clients. I can create PDF Files from scratch using PDFLib. What we will require to do though i

Re: [PHP-WIN] It just doesn't make sense!

2003-01-17 Thread Stephen Edmonds
Grr it just takes the biscuit. I found the problem in my menu system. Basically, I was trying to send on two ? rather than using an &. So incredibly annoying, yet so incredibly simple... ah well Stephen - Original Message - From: "Stephen Edmonds" <[EMAIL PROTECTED]> To: "PHP Windows Hel

php-windows Digest 17 Jan 2003 12:10:44 -0000 Issue 1540

2003-01-17 Thread php-windows-digest-help
php-windows Digest 17 Jan 2003 12:10:44 - Issue 1540 Topics (messages 17918 through 17936): Re: Image Creation Error 17918 by: Mikey 17919 by: Mikey 17922 by: Ed Re: What kind of Editor you used to build PHP script ? 17920 by: Leo G. Divingracia III 1

[PHP-WIN] It just doesn't make sense!

2003-01-17 Thread Stephen Edmonds
I am currently re-writing part of my website to allow people who don't use cookies to still use the site features. However, I have run into a problem. I send the session ID from page to page via the query string, and retreve it using $_GET. Everything works fine, and if set I store the details in $

Re: [PHP-WIN] PHP/PWS 3.0

2003-01-17 Thread Waldemar Brand Neto
According Micro$oft PWS will not work under Windows ME, try Windows 98 or 2000. - Original Message - From: "Lewis J Hannah" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 12:49 PM Subject: [PHP-WIN] PHP/PWS 3.0 > Hello, > > I am trying to get PHP to work un

Re: [PHP-WIN] RE: What kind of Editor you used to build PHP script?

2003-01-17 Thread Luis Ferro
I've checked up the latests Eclipse IDE with php and mysql plugins and it seams so far very good indeed. One or two more iteractions of the builds and it should become clean of the quirks that a beta/development release always has (which are normally much minor then the ones existing in commerc

[PHP-WIN] SQL-query

2003-01-17 Thread Bobo Wieland
I hope this isn't to much OT... Sorry if it is... In my MySQL-db that I use for a php-driven site I have many tables with the Primary Key set as an auto increment value. If I have 4 records with id 1, 2, 3 and 4 and then delete number 3 and add one more record I get the id's 1,2,4 and 5. It isn't

[PHP-WIN] Help needed about mailing!

2003-01-17 Thread Burak Ata
Well I need some help about mailing I was using the IP of an exchange server as my SMTP and I was using mail function without any problem. Our exchange server has changed and now I am using the ip of that server but the mail function doesn't work. It always gives "Server Error". Any idea?

[PHP-WIN] Re: What kind of Editor you used to build PHP script ?

2003-01-17 Thread skyweb
Good ideas! Thank you! :) "Uttam" <[EMAIL PROTECTED]> wrote: [EMAIL PROTECTED] > i hv been using plain text editor (Notetab Light) mostly, and hv also tried > some IDEs but found them not stable enough... > > apart from powerful text editor, here's the wishlist from a php script > editor: > > * R

RE: [PHP-WIN] RE: What kind of Editor you used to build PHP script?

2003-01-17 Thread Dash McElroy
Just give us a couple of years :) In the meantime, I'll use editplus (on win32) and pico (on *nix). -Dash In a medium in which a News Piece takes a minute and an "In-Depth" Piece takes two minutes, the Simple will drive out the Complex. -- Frank Mankiewicz On Fri, 17 Jan 2003, U

Re: [PHP-WIN] date and time operation

2003-01-17 Thread Dash McElroy
By any chance have you looked at the date() function in PHP? Check the manual at http://www.php.net/manual/en/function.date.php. date() pairs up nicely with checkdate and with mktime (http://www.php.net/manual/en/function.mktime.php). Thusly, Use the following examples: $year = date("Y"); //4 dig

RE: [PHP-WIN] RE: What kind of Editor you used to build PHP script ?

2003-01-17 Thread Uttam
if you have MySQL, Apache and PHP then why not? thats in line with open-source paradigm. regds, -Original Message- From: Sean Malloy [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 12:51 To: Uttam; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] RE: What kind of Editor you used to buil

Re: [PHP-WIN] RE: What kind of Editor you used to build PHP script ?

2003-01-17 Thread Ignatius Reilly
I would add to this list a visual editor of HTML tables. To me a most important feature, and the reason I continue to use Dreamweaver 4 to code PHP, despite the absence of colour highlighting. Ignatius. - Original Message - From: "Uttam" <[EMAIL PROTECTED]> To: "'skyweb'" <[EMAIL PROTECTE