Re: [PHP] Form's and oracle

2001-02-03 Thread Iván Sánchez Ortega \"MR\"
"Christoph Kempen" ... > For example: > I¹ts a test php:I\¹ts a test > But oracle wants: I¹¹ts a test I think that a predefined replace function, with ' and " should do the trick... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EM

Re: [PHP] Oracle failed to connect

2001-02-01 Thread Iván Sánchez Ortega \"MR\"
""kaab kaoutar"" ... > Hi! > I'm using orcale8 and as long as oracle8 ocilogon does not work, i tried the > oracle function and i always get: > for Ora_Logon("kaab@KKAnn", "kaab"); > connection failed could not resolve service name Just try to reinstall PHP, and the Oracle 8 libraries for PHP

Re: [PHP] really need help...

2001-01-26 Thread Iván Sánchez Ortega \"MR\"
""Shane McBride"" ... > I am getting this error and I don't understand. I am running > PHP 4.0.4 and Xitami web server on Windows 98SE. I know this > is not the most ideal setup, but I just use it for developing. Usually, webservers running PHP won't allow to execute any commands regarding creati

Re: [PHP] arg....

2001-01-26 Thread Iván Sánchez Ortega \"MR\"
"Kurth Bemis" ... > At 12:31 PM 1/26/2001, Krznaric Michael wrote: > > sorry - here you all go.. > > > // number crunching time > $count++; > $time = date("Y-m-d H:i:s"); > > $result = mysql_query("INSERT INTO links (count) VALUES $count WHERE lid=$id"); > >i'm having a horrible time updating 2 f

Re: [PHP] To much PHP (Newbie)

2001-01-24 Thread Iván Sánchez Ortega \"MR\"
""Chris Lee"" ... > If your refering to old Pascal pre-3.0 in how you could only have X number > of bytes in a file (32k I think) then pascal would not parse the rest, then > no php isnt limited to this, your pages will just get slower and slower > because of more hits. Anyway, if your pages are

Re: [PHP] tengo un problema

2001-01-22 Thread Iván Sánchez Ortega \"MR\"
mnihttpd, y la instalación va de lujo... te instala las extensiones para PHP y el propio PHP automáticamente... -- _ Iván Sánchez Ortega "MR" /|/| |_>(eme)(erre)(punto)(arroba)wanadoo.es / | | | \ /|\No, mamá, no toques ese cab#@@%%## [NO C

Re: [PHP] mixing HTML and PHP code

2001-01-16 Thread Iván Sánchez Ortega \"MR\"
"Alex Black" ... > >> the horse is back from the dead! > > > >huh? > > inside joke. Doh. > > > I don't like to do database connections when I've already output markup, > > > what if something goes wrong, or I want to do a redirect, etc? > > > > If something goes wrong -> It's the DBA fault. :-)

Re: [PHP] tie string value together

2001-01-15 Thread Iván Sánchez Ortega \"MR\"
"Brian Clark" ... > > Not quite; you want the concatenation operator: > > $Birthdate = $year . $month . $day; /* assuming &&day was a typo */ > > This will also work: > > $Birthdate = "$year$month$day"; As i know, databases use a 00/00/ date format, so the thing you may do is $birthdate = $d

Re: [PHP] mixing HTML and PHP code

2001-01-15 Thread Iván Sánchez Ortega \"MR\"
"Alex Black" ... > the horse is back from the dead! huh? > > And aside from that, i don't have a one and only common_head.php ... i have > > a separate plain common head, in plain HTML... the real common_head.php > > should look like (definitively not real PHP sintax): > > right, and though this

Re: [PHP] SMs

2001-01-14 Thread Iván Sánchez Ortega \"MR\"
""Bastian"" ... > Hello! > > A requirement is a special server that sends them, but such a server costs > money, every message costs some. I read somewhere that you could send SMs if you had your mobile phone linked to your computer, and special software to needful to make the PC-mobile interacti

Re: [PHP] mixing HTML and PHP code

2001-01-13 Thread Iván Sánchez Ortega \"MR\"
t text in the place of the spitted-out-from-database-data), and you as PHPer only have to cut out the HTML code (not a really hard work) into two parts. As i see, it can work perfectly this way. How you format the spitted data and stuff is another matter but anyway, getting the code that dream

Re: [PHP] mixing HTML and PHP code

2001-01-13 Thread Iván Sánchez Ortega \"MR\"
"Mark Maggelet" ... > I think you missed something: > > while (fetch_row_from_query()){ >$output = data_from_fetched_row(); >$more_output = more_data_from_fetched_row();?> > > > > > > > tell me that's not easier on your eyes :) Yes, but i wrote that because the w