[PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread James Cave
> if your form is inside a table .. hide the tags In my experience, this just "moves" the closing whitespace to the end of the table (just like if you insert text incorrectly between a and a ). The previous post I've made using the "display: inline;" style is in fact W3C compliant. -- PHP G

Re: [PHP] Portland, Oregon

2001-10-23 Thread Richard Baskett
Argh! Well farfinugen! My f word for the day... Well i expect to see more announcements the next time someone is in my area :) Although it will change to San Diego soon so keep me informed! Rick > >> So Rasmus.. how about coming to Portland, Oregon? I havent seen a PHP >> class, tutorial, a

[PHP] Sao Paulo, Brazil

2001-10-23 Thread Alex Piaz
Hi Rasmus, I could not resist...How about to be here in São Paulo. I read that you lived in Brazil , is this true??? Regards Alex Piaz Webmaster Global Map Internet Marketing http://www.globalmap.com "Be cool or be cast out" RC1

RE: [PHP] In Toronto Next week

2001-10-23 Thread Mark Saunders
Sounds tempting. Are ultra newbies welcome -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 6:48 PM To: [EMAIL PROTECTED] Subject: [PHP] In Toronto Next week I have a couple of free days in Toronto Monday and Tuesday next week. Anybo

RE: [PHP] anyone have...

2001-10-23 Thread Jack Dempsey
would need to check, but: preg_replace("/[^a-zA-z]/",'',$data) should about do it... jack -Original Message- From: Jay Paulson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 6:50 PM To: [EMAIL PROTECTED] Subject: [PHP] anyone have... anyone have a function that strips out

[PHP] Newbie in Need of Help!

2001-10-23 Thread JMack
Greetings. I have been playing around with PHP this week, programming a football pool. I have hit a small snag that I would like some assistance with, if anyone knows the answer -- it's probably very simple, but my Intro to PHP book does not tell me how to do it. I have an HTML form in a PHP pa

Re: [PHP] POST and & trouble.

2001-10-23 Thread Alex Marín Fica \(Desarrollo\)
Try using urlencode function to make it "usable" on url, so char symbols like & or / or . (dot) will be returned by this funtion like a % with the hex ascii code near by... I hope this helps... - en español... transandino compañero phpero Intenta codificando para url, empleando la función ur

RE: [PHP] anyone have...

2001-10-23 Thread Jason Murray
Try: ereg_replace("[^a-zA-Z]", "", $string) Jason -- Jason Murray [EMAIL PROTECTED] Web Developer, Melbourne IT "Work now, freak later!" > -Original Message- > From: Jack Dempsey [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 24, 2001 9:02 AM > To: Jay Paulson; [EMAIL PROTECTED

Re: [PHP] Newbie in Need of Help!

2001-10-23 Thread Mike Eheler
The best way to do this is not to call them pick1, pick2, etc.. but call them all pick[]. Here's an example: St. Louis Washington St. Louis Washington Then in your PHP code you can do it like this: $value) { echo $value.''; } ?> or, if you prefer more traditi

Re: [PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread Mark
On Wed, 24 Oct 2001 09:14:07 +1000, James Cave wrote: > >> if your form is inside a table .. hide the tags > >In my experience, this just "moves" the closing whitespace to the >end of >the table (just like if you insert text incorrectly between a >and a >). > >The previous post I've made using t

[PHP] PHP and Image Magick for FreeBSD

2001-10-23 Thread Max
Hello, Looking for statically linked pre compiled ImageMagic binaries (convert, mogrify, ect.) to run from the cgi, with PHP exec on FreeBSD. thanks, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [PHP] Apache "Request" Ids?

2001-10-23 Thread Brian White
Neat! Unfortunately it looks like it designed simply to be able to generate unique ids - this isnt much use to me unless I have a way to query whether the request that generated the id is still active. Doesn't matter. At 09:11 23/10/2001 -0700, Christopher William Wesley wrote: >On Tue, 23 O

Re: [PHP] include() problem.

2001-10-23 Thread David Robley
On Wed, 24 Oct 2001 08:03, brendan wrote: > Hi, > I have an issue with including a file accross my web server from a > separate site on that server served on another port. > > - explanation > > my php website runs off IIS port :80 (unfortunately IIS is employers > decision not mine )

Re: [PHP] mail() question

2001-10-23 Thread David Robley
On Wed, 24 Oct 2001 07:03, [EMAIL PROTECTED] wrote: > Hi all, I've got a question that I'm sure can be answered, but I'm a > little stuck right now... > > I've set up yelvington's excellent annotate script, and it works > beautifully. My next step was to try to add an auto email function to > noti

Re: [PHP] include() problem.

2001-10-23 Thread brendan
Uni runs solaris/unix faculty runs iis world of political pain and anguish.. view source brings up a blank screen .. ta brendan David Robley wrote: > On Wed, 24 Oct 2001 08:03, brendan wrote: > >>Hi, >> I have an issue with including a file accross my web server from a >>separate

Re: [PHP] In Toronto Next week

2001-10-23 Thread Christian Dechery
At 15:47 23/10/01 -0700, Rasmus Lerdorf wrote: >I have a couple of free days in Toronto Monday and Tuesday next week. >Anybody able to gather enough of a crowd of interested bodies for a PHP >tutorial? I'd say at least 10 for it to be worth my effort. > >-Rasmus how about Rio, Brazil?? :)) __

Re: [PHP] include() problem.

2001-10-23 Thread David Robley
On Wed, 24 Oct 2001 10:02, brendan wrote: > Uni runs solaris/unix > faculty runs iis > world of political pain and anguish.. > > view source brings up a blank screen .. > ta > brendan > OK - bit of straw grasping; you do have URL-fopen-wrappers enabled; try assigning the result of the include to

Re: [PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread James Cave
> I gave it a try > NN4.7 and 6.1 both ignored the 'display: inline' css in my test There was actually an error in the HTML I posted, try this: 1. form tag outside of cell 2. form tag outside of cell 3. form tag outside of cell 4. form tag outside of row 5. form tag outside of row 6. form tag o

[PHP] GD: need better solution...

2001-10-23 Thread Christian Dechery
I have a page that calls a image creating script lots of times... this script takes two parameters... the type of graph to be created and an array with data to fill the graph to be created... now I'm doing it like this: "> and it generates an output something like this: it works just fine.

[PHP] how many data can a session hold?

2001-10-23 Thread Christian Dechery
I want to know how many data can a session hold? The number of bytes... and if possible the max size of an - let's say - array of ints. I need this to know how many IDs I can hold in the session... _ . Christian Dechery . . Gaita-L Owner / Web Developer . . http://ww

Re: [PHP] PHP Openlink/Progress Problems

2001-10-23 Thread David Robley
On Tue, 23 Oct 2001 16:35, Grant Walters wrote: > I'm going nuts trying to work out how to handle errors from data > statement with single quotes. PHP 4.0.6 appears to be mangling > something somewhere. > All statements work with the Openlink odbctest program > Any help appreciated > > $conn = o

Re: [PHP] PHP usage(s)

2001-10-23 Thread Brian White
At 17:16 23/10/2001 -0500, Wandrer wrote: >> C/ Use a development environment made from PHP like Zope, >> Midgard, et. al. > >Use Textpad as my development environment. Ditto. Very nice. >> D/ Can share with us a new direction in PHP that will keep it >> compet

[PHP] a

2001-10-23 Thread Franco Breciano
a -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] aaaaaaaaaaaaaaa

2001-10-23 Thread Franco Breciano
a -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] aaaaaaaaaaaaaaa

2001-10-23 Thread Richard S. Crawford
This is probably the most challenging question I've ever seen come across this list. Can we get back to you on this one, Franco? At 07:52 PM 10/23/2001, Franco Breciano wrote: >a > > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >F

[PHP] MSSQL 7.0 and PHP

2001-10-23 Thread Franco Breciano
I'm using php to retrieve a Query from a SQLServer 7.0 database. My code is this one: $base = mssql_select_db($db,$conexion); $sql="SELECT MarcasSolicitante FROM Marcas"; $result = mssql_query($sql,$conexion); while ($myrow = mssql_fetch_array($result)) { $mensaje= $myrow["MarcasSolici

[PHP] Php and Emacs21

2001-10-23 Thread Mark
Hi, Now that emacs has tty color support, I'm trying to get it to do php syntax highlighting through a windows telnet/ssh client like securecrt or teraterm but I haven't gotten it yet. Has anyone got this working? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL P

Re: [PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread Mark
On Wed, 24 Oct 2001 11:18:04 +1000, James Cave wrote: > >> I gave it a try >> NN4.7 and 6.1 both ignored the 'display: inline' css in my test > >There was actually an error in the HTML I posted, try this: > >1. form tag outside of >cell >2. form tag outside of >cell >3. form tag outside of >cell >

[PHP] PHP/Apache/Windows 2000 - Does not send mail

2001-10-23 Thread Yuval Zukerman
Hi there, I installed PHP 4.0.6 on a Windows 2000 machine running Apache 1.3.22. I followed all the instructions for installation - added the php.ini file to the C:\winnt directory, added php to httpd.conf. I tried both the module and the CGI versions and the following problem still persisted:

RE: [PHP] PHP/Apache/Windows 2000 - Does not send mail

2001-10-23 Thread Nick Richardson
You need to make sure you have a few things configured on you SMTP Virtual server. Start IISAdmin and right click on 'Default SMTP Virtual Server' then choose properties. Ok, from here, things might not match perfectly because i'm running Windows XP (no i didn't pirate it, i work for microsoft).

RE: [PHP] MSSQL 7.0 and PHP

2001-10-23 Thread Nick Richardson
my understanding (and i could be totally wrong) is varchar only accepts values up to 255 (so does char). To get larger than that you have to use 'text' (i.e. create table ( text not null..); -Original Message- From: Franco Breciano [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 2

[PHP] Re: Help converting ASP->PHP

2001-10-23 Thread Garth Dahlstrom
> > datCurrent, intCurrentMonthDays and intWorkDays are local > This didn't totaly help. This line I can't figure out: > intCurrentMonthDays= Day[DateAdd["d",-1, DateAdd["m",1, datCurrent]]]; > > Basically it gets the number of days in the current month, How to do > in PHP? Mr.Baseball, have a

RE: [PHP] mail() question

2001-10-23 Thread Niklas Lampén
Well, not sure if this is a solution for you but I've done it with something like this: If ($Page == "Form") { // Form itself with hidden field Page=Mailer } else if($Page == "Mailer") { // Send the mail header("Location: youraddress?Page=Form"); }; Hope this helps. Ni

[PHP] Package mechanism

2001-10-23 Thread Douw Steyn
Hi all, I have a need for a package mechanism like that provided by TCL. We write a lot of code in reusable libraries and often encounter the situation in which an application uses a particular library but requires at least version X or greater. The require(), require_once(), etc. functionality

[PHP] OnUNload Scripts

2001-10-23 Thread Impex Holidays Maldives / Hasan
Hi everyone, I can use javascripts onunload to run PHP file with a new window. Is there anyway i can run PHP script file on ONUNLOAD with out opening a new window ( in the back ground). Any one's help will be greatly appreciated. Best regards, Hasan -- PHP General Mailing List (http://www.

RE: [PHP] OnUNload Scripts

2001-10-23 Thread Martin Towell
>From what I can tell, the only way you can execute a PHP script is to have the browser request it. This means using the same window that the document is being "unloaded" in, or opening a new window. You could open a new window, give focus to the current window, and in the new window, have it clo

[PHP] Enabling php in only certain hosts and directories

2001-10-23 Thread Joseph Blythe
Hello all, I am just configuring up a new web server, and I want to be able to run php only in the web servers main document root and in specified virtual hosts, I have a fair understanding on how to go about this, but would really like some feedback before I get to far into it. Basically the onl

[PHP] redirecting the browser

2001-10-23 Thread Ozgur Demirtas
Hi all, I have a PHP script and at one point of the script I am trying to redirect my browser to a certaion page. I can't seem to find an easy way of doing this. header() call is so much of a problem. There is no such function like redirect("...") as in ASP? PS: I am using PHP version 3.09 as an

Re: [PHP] redirecting the browser

2001-10-23 Thread Mak
Hi, you can use Javascript as follows: document.location.href='somepage.php';"); //continue yr code... ?> Hope it helps. - Mak - Original Message - From: "Ozgur Demirtas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 24, 2001 2:47 PM Subject: [PHP] redirecting

Re: [PHP] redirecting the browser

2001-10-23 Thread Valentin V. Petruchek
Use this: - Original Message - From: "Ozgur Demirtas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 24, 2001 9:47 AM Subject: [PHP] redirecting the browser > Hi all, > > I have a PHP script and at one point of the script I am trying to redirect > my browser to a c

Re: [PHP] INPUT tag with default value

2001-10-23 Thread Silvia Mahiques
Dear Philip, Thank you very much, I have lost long time proving different alternatives that it's better not to implement. I prefer a safe code. Thanks again!. Cheers Silvia Mahiques "Philip Olson" <[EMAIL PROTECTED]> escribió en el mensaje Pine.BSF.4.10.10

[PHP] Check mail user

2001-10-23 Thread Rosen
Hi, can someone give me script for syntax check of username for mail server ? Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECT

RE: [PHP] OnUNload Scripts

2001-10-23 Thread Jason G.
It may be possible to do something of the following: I know that on rollovers, Javascript can preload the images needed to rollover to... Hmm... Maybe you could have javascript load an image during the unload event with the image's src pointing to a php script... -Jason Garber At 04:51 PM

<    1   2