[PHP-WIN] PHP problems -permissions

2001-07-27 Thread Emerald Shop
Dear sirs, Does anyone use Apache and PHP on Windows ME ? I have not been able to work with because I have not intalled the software as requiered ! I have installed Apache 1.3.19 and PHP4 over Windows Millenium. #I put this in httpd.conf file: LoadModule php4_module c:/php/sapi/php4apache.dll

Re: [PHP-WIN] Why doesn't this work?

2001-07-27 Thread Joel
Hi Ivan and the others, I realized my mistake, it was a slight confusion. Actually no function like mysql_result exists. It was mysql_query and I mistook it for mysql_result. The script works now and can successfully create the tables, the script below now works : DONE!"; ?> Thanks anyway, you

RE: [PHP-WIN] passing array with form

2001-07-27 Thread afan
I just did it: $Name = serialize($Name); $Name = ereg_replace("\"", "'", $Name); After submitting: $Name = eregi_replace("'", "\"", $Name); $Name = stripslashes($Name); $Name = unserialize($Name); Ok, this works, but there is mush better way, I'm sure. Can somebody tell me? Afan Pasali

[PHP-WIN] passing array with form

2001-07-27 Thread afan
HI to all, I have a little, simple form and after submitting, together with that information I have to pass an array with other info. How? Let's say array is called $Name I tried this: $Name2 = addslashes(serialize($Name)); On screen: a:5:{i:0;s:13:\"Name 1\";i:1;s:6:\"Name 2\";i:2;s:10:\"Name

RE: [PHP-WIN] Why doesn't this work?

2001-07-27 Thread Ivan Milanez Castellanos
Joel: I had the same problem you did, the script isn't wrong it's just that even though the PHP manual says to use the sintax you used, the actual sintax for mysql_select_db and for mysql_query or mysql_result is: mysql_select_db(string db_name) mysql_query(string query_string) mysql_result(strin

[PHP-WIN] Why doesn't this work?

2001-07-27 Thread Joel
I'm trying to create table in a database using PHP with MySQL. I want the script to do it on its own, I tried but couldn't get it to work. The script is below : DONE!"; ?> Please let me know whats going wrong in that. Thanks, -- Joel Agnel. [EMAIL PROTECTED] -- PHP Windows Mailing List (ht

[PHP-WIN] Re: Refresh window with php script?

2001-07-27 Thread Robert J Sherman
Luka, As the other post indicates, you will need to add either a meta refresh tag, or simply add a link in the document (Reload) "Luká¹ Noskieviè" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, i need refresh window with some data from MySQL. I want

[PHP-WIN] Re: script timeout problem

2001-07-27 Thread Robert J Sherman
I don't know about your script, but depending on a number of different things it might very well be possible that your outgoing mail server is causing the timeout. If you sending through a service provider especially.. 800K + could very easily set off anti-spam systems.. Again, I dunno.. Frankl

RE: [PHP-WIN] Refresh window with php script?

2001-07-27 Thread Ron Woods
Try adding this before the tag. It will refresh itself every thirty seconds without user intervention. Ron Woods/GAI Sr. Software Engineer 303 Clarence Tinker Dr Suite 100 San Antonio, TX 78226 Tel: 210-927-0544 x104 Fax: 210-224-2277 http://www.gai-inc.com -Original Message- From: Lu

Re: [PHP-WIN] script timeout problem

2001-07-27 Thread Paul Smith
I saw a script like this somewhere that does that at somepoint. See if you can figure it out. What it does is it sets the script to execute in the background. http://px.sklar.com/code-pretty.html?code_id=218 BlackLord wrote: > > Hello, > > I am trying to develop a scrpit which emails my email

php-windows Digest 27 Jul 2001 14:52:53 -0000 Issue 671

2001-07-27 Thread php-windows-digest-help
php-windows Digest 27 Jul 2001 14:52:53 - Issue 671 Topics (messages 8527 through 8531): Changing Thread Priority w/Apache 8527 by: Scott Dial Re: fork?!?! 8528 by: Arkegide Index Server nd PHP 8529 by: Paul Refresh window with php script? 8530 by: Luká¹ N

[PHP-WIN] e-mail confirmation #818719

2001-07-27 Thread julie8719
This is a confirmation e-mail for your request. You can come anytime and claim your FREE Sex Toys at http://www.freevibrator.com All Free Sex Toys we feature are absolutly free with no purchase necessary whatsoever. (Small reasonable shipping charges apply) Thank You for subscribing to FreeSex

[PHP-WIN] Refresh window with php script?

2001-07-27 Thread Luká¹ Noskieviè
Hi, i need refresh window with some data from MySQL. I want to have window with result and form button "Refresh data". How can i do that? I'm able to reload my page, but i want to do that from the same page. Please help, thanks. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe,

[PHP-WIN] Index Server nd PHP

2001-07-27 Thread Paul
Has anyone got some working source for index server and PHP? I notice there has been previous discussion on doing this in this newsgroup, but no one appears to have been kind enough to post some sample source code. Paul -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP-WIN] Re: fork?!?!

2001-07-27 Thread Arkegide
Hello, I've the same problem. The php 4.0.6 version correct a problem with the exec (ie fork) function (I see that in the 4.0.6 bug correction). But when I install the 4.0.5 or 4.0.6 PHP version on windows NT they don't want to work well. And I must return to the 4.0.4 version to get something wo

[PHP-WIN] Changing Thread Priority w/Apache

2001-07-27 Thread Scott Dial
I have a process intensive script that my friends use of my computer. The problem is that it eats my cycles and I want to make sure my threads get priority. I don't see any way to change this in apache. So, I decided to make a wrapper for php.exe that would spawn it and change the priority. Anyone