[PHP] MySQL/PHPMyAdmin

2001-11-08 Thread jtjohnston
> -Brian Clark | PGP is spoken here: 0xE4D0C7C8 > Please, DO NOT carbon copy me on list replies. :) Then add .delete to your return address : [EMAIL PROTECTED] (Brian Clark) Anybody know of a good MySQL/PHPMyAdmin provider where I can get myself a cheap account? J -- PHP General Mailing

Re: [PHP] Looking for security annoucements

2001-11-08 Thread Brian Clark
@ 2:14:00 AM on 11/9/01, Brian Clark wrote: >> I'm running a PHP/mySQL site which has been hacked twice this week >> :-((( >> I'm not so bad at security but I don't know any active resource to >> be aware of hole in PHP and/or MySQL, which forum/newsgroup/list >> wouldbe advice? > Would you hap

Re: [PHP] Looking for security annoucements

2001-11-08 Thread Jochen Kächelin
Am Freitag, 9. November 2001 08:14 schrieb Brian Clark: > Hi Jimmy, > > @ 2:08:09 AM on 11/9/01, Jimmy wrote: > > I'm running a PHP/mySQL site which has been hacked twice this week > > > > :-((( > > > > I'm not so bad at security but I don't know any active resource to > > be aware of hole in PHP

Re: [PHP] Looking for security annoucements

2001-11-08 Thread Brian Clark
Hi Jimmy, @ 2:08:09 AM on 11/9/01, Jimmy wrote: > I'm running a PHP/mySQL site which has been hacked twice this week > :-((( > I'm not so bad at security but I don't know any active resource to > be aware of hole in PHP and/or MySQL, which forum/newsgroup/list > wouldbe advice? Would you happe

[PHP] Looking for security annoucements

2001-11-08 Thread Jimmy
Hi, I'm running a PHP/mySQL site which has been hacked twice this week :-((( I'm not so bad at security but I don't know any active resource to be aware of hole in PHP and/or MySQL, which forum/newsgroup/list wouldbe advice? Nice day to all, by the way.. Jimmy Carpe diem...today is another - g

RE: [PHP] Download script - sometime works sometime not

2001-11-08 Thread Jason Murray
> Its works for file .html or.zip or .tar or .tar.gz > But it is not for text file.. > Could you recommend how I download text file ? > What do I have to do in my scripts...? > > I read the manual about HTTP functionsand search through > mailing list > about header functions > bu

Re: [PHP] Download script - sometime works sometime not

2001-11-08 Thread Gede
Its works for file .html or.zip or .tar or .tar.gz But it is not for text file.. Could you recommend how I download text file ? What do I have to do in my scripts...? I read the manual about HTTP functionsand search through mailing list about header functions but still no clue

[PHP] *.png - wrapping text

2001-11-08 Thread jtjohnston
I'm playing with some code to put text on an image: http://www.collegeSherbrooke.qc.ca/languesmodernes/course/image/marc.php Because I'm using a fixed font, I know I don't want to go over 34 characters per line. I calculate my maximum number of chatraacters to be 476. How can I parse $string t

RE: [PHP] how to echo data in a textarea

2001-11-08 Thread Chris Kay
Scott try this is standard html, you will find this out even if you open Wintendo Frontpage really you should be able to write html before learning php Regards Chris Kay - Tech Support - IDEAL Internet

Re: [PHP] how to echo data in a textarea

2001-11-08 Thread Jeff Gannaway
No problem: Here is the default text that will appear in the text box. Later, Jeff At 06:40 PM 11/8/01 -0500, Scott wrote: >Could someone please show me how to echo data into a textarea field of a form? >e.g. I have used the following in text fields: >" size=3 maxlength=3>, >but textareas don

[PHP] Re: pass javascript variable to php?

2001-11-08 Thread Yasuo Ohgaki
A. Dixon wrote: > So say I have a link on the page that the checkbox is on to a file called > program.php How would I add name value pairs to the querystring when > someone clicks on the checkbox? Then when I click on the link program.php > it should read program.php?checkbox1=on where checkbo

[PHP] how to echo data in a textarea

2001-11-08 Thread Scott
Could someone please show me how to echo data into a textarea field of a form? e.g. I have used the following in text fields: " size=3 maxlength=3>, but textareas don't have the "value" attribute and I haven't been able to come up with a way that works or find a working example. Thanks, SW -- P

[PHP] Re: Forking and BG processes in PHP

2001-11-08 Thread Yasuo Ohgaki
Massimiliano Bariola wrote: > Hello Yasuo, > > Tuesday, November 06, 2001, 12:12:59 PM, you wrote: > > > YO> *SNIP* > > YO> Try to redirect stdout & stderr to /dev/null (If you are on Unix > YO> like systems) > > YO> Then it will return immediately to PHP. > > YO> -- > YO> Yasuo Ohgaki >

RE: [PHP] Append to STDIN

2001-11-08 Thread Martin Towell
this wouldn't be something similar to C's ungetch() ?? -Original Message- From: Cleber S. Mori [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 3:16 PM To: [EMAIL PROTECTED] Subject: [PHP] Append to STDIN Hi again... I had already RTFM... Neither in exec or ``'s I found any

[PHP] Append to STDIN

2001-11-08 Thread Cleber S. Mori
Hi again... I had already RTFM... Neither in exec or ``'s I found any thing about STDIN... I just wondered if some one have any tips. thanks again! Cleber S. Mori Monitor Lab Linux 2o Ano - Bacharelado em Ciências da Computação ICMC - Instituto de Ciências Matemáticas e de Computação USP - Un

[PHP] Troubles compiling Apache with PHP4

2001-11-08 Thread Eric
Hello, I am trying to compile apache_1.3.19 with php4.06 and mysql 3.23.43 I am running Slackware with kernel version 2.2.13 I have mysql up and running without troubles. With PHP I ran; ./configure --with-mysql=../mysql --with-apache=/var/lib/apache_1.3.19 --with-ftp make make install Then I g

Re: [PHP] Want to remove some special from text

2001-11-08 Thread Kurt Lieber
http://www.php.net/manual/en/function.strip-tags.php On Thursday 08 November 2001 08:01 pm, you wrote: > I want to remove all html related tags, such as > ... etc > > But want to keep the rest data as it is. Just want to remove those tags. > Any idea how to do it ? -- PHP General Mailing List (

Re: [PHP] email receipt confirmation

2001-11-08 Thread Kurt Lieber
Using standard internet mail, no. You can *request* that a read receipt be sent when the email is opened by the recipient, but there is no guarantee that that person will allow the receipt to be sent. Read receipts also often annoy the recipient and can be perceived as rude and intrusive. Yo

[PHP] Want to remove some special from text

2001-11-08 Thread Manisha
I want to remove all html related tags, such as ... etc But want to keep the rest data as it is. Just want to remove those tags. Any idea how to do it ? manisha

[PHP] email receipt confirmation

2001-11-08 Thread WebDev
Hi all, I have a form which sends off the contents of a page as an HTML formatted email. However, it appears that certain attempts to send these emails never show up at the intended email address even though no errors are reported upon sending while others work perfectly. It there any way to co

[PHP] Part Time PHP/MySQL Work Available in Wash. DC

2001-11-08 Thread Charlie Romero
I don't know of a better place to post this. I have a part time position available in Northern Virginia. You MUST be into European cars. MUST work local, NO REMOTE inquiries please. All types of PHP/MySQL work needed. Helpful if you know Perl and Postgres. Rate commensurate w/ experience. Email

Re: [PHP] html2pdf

2001-11-08 Thread burk
On Tue, 6 Nov 2001, Valentin V. Petruchek wrote: > Hello everyone! > > I'm looking for powerful (e.g. table and css support) generator html2pdf, > preferable written in php. Well it's not written in PHP, but it works well enough with it: http://www.easysw.com/htmldoc It's a good package, the t

Re: [PHP] Append to STDIN

2001-11-08 Thread David Robley
On Fri, 9 Nov 2001 11:58, Cleber S. Mori wrote: > Hi guys... > > I have a perl script which adds automatically contents to my html file. > I have been done this manualy, from a unix shell, but now I want to > make the PHP do-it-for-me. > > As I already have the perl script, I won't rewrite it aga

[PHP] sessions and SSI

2001-11-08 Thread Christian Dechery
Doesn't sessions work with SSI? I have a page that uses sessions extensively called miec.php... if you call miec.php right out on the browser, the sessions works fine... the session is set and then persists normally... but if a file I have, called demo.shtml, uses a SSI - -, then the session

[PHP] Append to STDIN

2001-11-08 Thread Cleber S. Mori
Hi guys... I have a perl script which adds automatically contents to my html file. I have been done this manualy, from a unix shell, but now I want to make the PHP do-it-for-me. As I already have the perl script, I won't rewrite it again, so, how can I make a PHP variable ($foo) to go to the STD

Re: [PHP] Multiple SUBMIT Buttons and Default

2001-11-08 Thread Tom Rogers
Hi I use java script like this: function highlight() { document.options.continue.focus(); } Tom At 07:51 AM 9/11/01, Jason Caldwell wrote: >On some of my forms I have multiple Submit buttons; > >for example >Button1 = Cancel, and >Button2 = Continue > >Is there a way to make

Re: [PHP] help with Auth in Apache

2001-11-08 Thread David Robley
On Fri, 9 Nov 2001 01:38, Christian Dechery wrote: > This is really not a PHP question... but I'm sure there's someone that > can help me out... > > How can I implement a kinda of super-user in Apache with .htaccess... > > something like, I'd have the following dir tree: > > / > /site1 > /site2 >

RE: [PHP] HTTP_SESSION_VARS

2001-11-08 Thread Johnson, Kirk
> Regarding the same topic of session management, I am using > PHP 3.09 and when > I call session_start() or $HTTP_SESSION_VARS['someVariable] > I get : > > Fatal error: Call to unsupported or undefined function session_start() > > > So, my question is that: Is there any session management in

Re: [PHP] HTTP_SESSION_VARS

2001-11-08 Thread Ozgur Demirtas
Regarding the same topic of session management, I am using PHP 3.09 and when I call session_start() or $HTTP_SESSION_VARS['someVariable] I get : Fatal error: Call to unsupported or undefined function session_start() So, my question is that: Is there any session management in PHP3.09? If the ans

RE: [PHP] CF convert question..

2001-11-08 Thread Daniel Reichenbach
> In the middle of porting over a large cold fusion project to php. How are your experiences so far? Any bigger problems? Missing Features? > CF has a tag called which lets you jump to > another page/location. > > Does php have an equivalent? Yes. Give http://www.php.net/header a try. Dan

[PHP] CF convert question..

2001-11-08 Thread Kelly Meeks
Hi there, In the middle of porting over a large cold fusion project to php. CF has a tag called which lets you jump to another page/location. Does php have an equivalent? I've been able to get the combo of an include/exit to work in a similar fashion, it just seems a bit heavy handed. S

[PHP] phpChess - need beta testers

2001-11-08 Thread Brian
Hello, I have recently created a phpChess script to play Chess using PHP/mySQL. I'm not sure if it's been done yet or not, but I needed something to do... so I did one myself. I'd like anyone out there that likes chess to help me test it out. After a couple weeks of good testing, I'll release th

Re: [PHP] Error control and the like

2001-11-08 Thread GB Clark II
On Thursday 08 November 2001 11:25, Sam Masiello wrote: > What database engine are you using? > > Sam Masiello > Software Quality Assurance Engineer > Synacor > (716) 853-1362 X289 > [EMAIL PROTECTED] Hi, I'm using PostgreSQL. GB > Subject: Re: [PHP] Error control and the like > > > On Thursday

RE: [PHP] Array HELP PLEASE

2001-11-08 Thread Martin Towell
try changing these lines: echo ""; for ($i = 6; $i <= 25; $i++) { echo "".stripslashes($models[$i]).""; } echo ""; to: echo ""; for ($i

RE: [PHP] Array HELP PLEASE

2001-11-08 Thread René Fournier
Or maybe not. :-) Although I got both rows displaying, they're actually two long to fit comfortably (w/o horizontally scrolling). So... I'd like to flip the axis of the table, so my header row runs vertically. But with the vagaries of html tables, I'm kinda stumped as to how to run the do/while

Re: [PHP] Array HELP PLEASE

2001-11-08 Thread Jim Lucas
read this page a little closer! http://www.php.net/manual/en/function.mysql-fetch-array.php the mysql_fetch_array(); does not pull all the results in one big array. it IS only a single row of data. try this out, it should do what you are looking to do. $results = mysql_query("SELECT * FROM mod

RE: [PHP] Array HELP PLEASE

2001-11-08 Thread René Fournier
Oops, guess I posted too soon. Just figured out the problem myself (use a do/while...). Thanks anyways. > -Original Message- > From: René Fournier [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 08, 2001 3:25 PM > To: Php-General > Subject: [PHP] Array HELP PLEASE > > > (Before yo

Re: [PHP] Error control and the like

2001-11-08 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Gb Clark II) wrote: > Let me give you an example of what I'm wanting in pseudo-code. > > connect to database > > exec query > > error in query > > catch error > > rollback database > > It is almost like exceptions. Exception handling isn'

[PHP] Array HELP PLEASE

2001-11-08 Thread René Fournier
(Before you write RTFM, please know that I have checked www.php.net, zend.com, phpbuilder.com, et all, and--in the eternal words of Bono--I still haven't found what I'm looking.) The situation: I extract an array from a MySQL table. Code: $models = mysql_fetch_array(mysql_query("SELECT