Re: [PHP] simple php search

2003-12-05 Thread Eric Bolikowski

"Dimitri Marshall" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> "Sophie Mattoug" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Paul Duggan wrote:
> >
> > >if I create a text box:
> > >
> > >
> > >
> > >
> > >
> > > 
> > >
> > > 
> > >
> > >
> > >
> > >
> > >how do I go about extracting a surname from a mysql database?
> > >
> > >
> > >
> > >will it be something along the lines?
> > >
> > >select firstname,surname
> > >from employees
> > >where surname = textbox.surname;
> > >
> > >
> >
> > "SELECT firstname, surname FROM employees WHERE surname =
> > '{$_GET['surname']}'"
>
> You might also want to do it this way...
>
> "SELECT firstname, surname FROM employees WHERE surname =
> \"{$_GET['surname']}\""
>
> Just in case their name is something like O'Neil, it won't interfere with
> your script.
>

An even better way is this

//process the surname, add slashes
$surname = addslashes($_GET['surname']);

//make the query
$sqlquery = "SELECT firstname, surname FROM employees WHERE surname =
'$surname'";

This makes sure that if there is signs like " or ', they will be escaped ;-)

> Good luck,
> Dimitri Marshall
>
> >
> > >
> > >new to this so im trying to get my head around it, basically i just
want
> to
> > >search a mysql database by someones surname.
> > >
> > >cheers!
> > >
> > >
> > >
> > >


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] simple php search

2003-12-05 Thread Eric Bolikowski

"Eric Bolikowski" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> "Dimitri Marshall" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> >
> > "Sophie Mattoug" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]
> > > Paul Duggan wrote:
> > >
> > > >if I create a text box:
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > 
> > > >
> > > > 
> > > >
> > > >
> > > >
> > > >
> > > >how do I go about extracting a surname from a mysql database?
> > > >
> > > >
> > > >
> > > >will it be something along the lines?
> > > >
> > > >select firstname,surname
> > > >from employees
> > > >where surname = textbox.surname;
> > > >
> > > >
> > >
> > > "SELECT firstname, surname FROM employees WHERE surname =
> > > '{$_GET['surname']}'"
> >
> > You might also want to do it this way...
> >
> > "SELECT firstname, surname FROM employees WHERE surname =
> > \"{$_GET['surname']}\""
> >
> > Just in case their name is something like O'Neil, it won't interfere
with
> > your script.
> >
>
> An even better way is this
>
> //process the surname, add slashes
> $surname = addslashes($_GET['surname']);
>
> //make the query
> $sqlquery = "SELECT firstname, surname FROM employees WHERE surname =
> '$surname'";
>
> This makes sure that if there is signs like " or ', they will be escaped
;-)
>

Forgot one other thing that improves it even more:

//process the surname, add slashes
$surname = addslashes($_GET['surname']);

//make the query
$sqlquery = "SELECT firstname, surname FROM employees WHERE surname LIKE
'%$surname%'";

You can add these percent signs( % ), in case you want to ensure that we get
results where the surname in the db is somewhat the same as the search
input.

If for example the surname in the database is "neill", and the user using
the search types "neil", then the extra %-signs will ensure that you find
this entry.


> > Good luck,
> > Dimitri Marshall
> >
> > >
> > > >
> > > >new to this so im trying to get my head around it, basically i just
> want
> > to
> > > >search a mysql database by someones surname.
> > > >
> > > >cheers!
> > > >
> > > >
> > > >
> > > >
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Spamming bastardly problem, please help

2003-12-05 Thread Eric Bolikowski
"Ryan A" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
> Some son of a * is spamming people and using one or our websites as a
> return address, so all the emails that get bounced are coming right back
to
> us, as you can imagine thats quite a lot, plus we are getting angry people
> writing to us.
>
> I had a look at the emails and I see its the usual crap: viagra,
> prescription meds and getting collage degrees etc
>
> What can I do about it? complaining to the sites that the spam is
promoting
> is stupid since they are using this method to promote their crap
>
> Problem is we have a catch all address as the site is large and we have
been
> using differient email ids all around the place which basically goes into
> one, so turning of the catch all can/would result in us missing some
> important stuff...
>
> ANY ideas?
>
> Thanks,
> -Ryan

have you checked ALL possible information in the mail headers for some info?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: POST upload script timeout

2003-12-06 Thread Eric Bolikowski

"Iain Staffell" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have a script on my local machine to allow friends to send me files, as
IM
> or FTP transfers don't work, and so I would like to accept reasonably
large
> files (10mb max).  I followed some of the examples shown around the net,
but
> continually found that the file would completely upload before giving an
> error message that the maximum execution time of 30 seconds was exceeded
in
> line 3.  Not great when line 3 was set_time_limit(3600);
>
> I was under the impression that the time spent recieving the file from the
> user wasn't included in the execution time, and so timeouts wouldn't be
> caused by this?
>
> The only solution I could find was to physically change the time limit in
> php.ini to a large value, which I would rather not do.  I am completely
> stumped as to why the script times out, I am reasonably sure it behaved
the
> same when I enclosed everything in one set of  and put echo's
infront
> of all the html.
>
> Here are snippets of my code and ini:
>
> PHP.INI:
> max_execution_time = 30
> max_input_time = 60
> post_max_size = 10M
> upload_max_filesize = 10M
>
> UPLOADS.PHP
> http://tcc.hopto.org/uploads.php.txt
>
> Thankyou for your time :o)

ini_set('max_execution_time', '3600');

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP Math Question

2003-12-11 Thread Eric Bolikowski

"Mike D" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> I'm am completely stumped on a seemingly simple math formula
>
> I need to find a way to map a set of numbers up to 4 (e.g. 1,2,3,4 or 1,2)
> to any number in a range of up to 10,000 (ideally, unlimited). Such that,
>
> (e.g. 1,2,3,4)
>
> 1 is to 1
> 2 is to 2
> 3 is to 3
> 4 is to 4
>
> 5 is to 1
> 6 is to 2
> 7 is to 3
> 8 is to 4
>
> 9 is to 1
> 10 is to 2
> 11 is to 3
> 12 is to 4
>
> 13 is to 1
> 14 is to 2
> 15 is to 3
> 16 is to 4
>
> And so on...
>
> Is anyone good at math, that can throw me a bone?
>
> Thanks y'all,
> Mike D
>
>
> 
> Mike Dunlop
> AWN, Inc.
> // www.awn.com
> [ e ] [EMAIL PROTECTED]
> [ p ] 323.606.4237

Here is some simple code to solve that problem(if i have understood right):

";
 }

 print "$i is to $j\n";

}

?>

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP Math Question

2003-12-11 Thread Eric Bolikowski

"Website Managers.Net" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
I like Eric's idea of showing the values and added a form to it so you can
select the number of items to show before running the script.

"
Maximum Number to Show: 

";
}

else {
for($i = 1, $j = 1; $i <= $_POST["i"]; $i++, $j++){

 if($j == 5){
  $j = 1;
  print "\n";
 }

 print $i." is to ".$j."\n";

} // end for

?>

Jim

----- Original Message - 
From: "Bronislav Kluèka" <[EMAIL PROTECTED]>
To: "Eric Bolikowski" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Thursday, December 11, 2003 5:22 PM
Subject: RE: [PHP] Re: PHP Math Question


| I do not know if I understand well, but what about
|
| $group=$number % 4;
| if ($group==0) $group=4;
|
| Brona
|
| > -Original Message-
| > From: Eric Bolikowski [mailto:[EMAIL PROTECTED]
| > Sent: Thursday, December 11, 2003 10:53 PM
| > To: [EMAIL PROTECTED]
| > Subject: [PHP] Re: PHP Math Question
| >
| >
| >
| > "Mike D" <[EMAIL PROTECTED]> wrote in message
| > news:[EMAIL PROTECTED]
| > > I'm am completely stumped on a seemingly simple math formula
| > >
| > > I need to find a way to map a set of numbers up to 4 (e.g.
| > 1,2,3,4 or 1,2)
| > > to any number in a range of up to 10,000 (ideally, unlimited).
| > Such that,
| > >
| > > (e.g. 1,2,3,4)
| > >
| > > 1 is to 1
| > > 2 is to 2
| > > 3 is to 3
| > > 4 is to 4
| > >
| > > 5 is to 1
| > > 6 is to 2
| > > 7 is to 3
| > > 8 is to 4
| > >
| > > 9 is to 1
| > > 10 is to 2
| > > 11 is to 3
| > > 12 is to 4
| > >
| > > 13 is to 1
| > > 14 is to 2
| > > 15 is to 3
| > > 16 is to 4
| > >
| > > And so on...
| > >
| > > Is anyone good at math, that can throw me a bone?
| > >
| > > Thanks y'all,
| > > Mike D
| > >
| > >
| > > 
| > > Mike Dunlop
| > > AWN, Inc.
| > > // www.awn.com
| > > [ e ] [EMAIL PROTECTED]
| > > [ p ] 323.606.4237
| >
| > Here is some simple code to solve that problem(if i have
| > understood right):
| >
| > 
| > for($i = 1, $j = 1; $i <= 1; $i++, $j++){
| >
| >  if($j == 5){
| >   $j = 1;
| >   print "\n";
| >  }
| >
| >  print "$i is to $j\n";
| >
| > }
| >
| > ?>
| >
| > Eric
| >
| > -- 
| > PHP General Mailing List (http://www.php.net/)
| > To unsubscribe, visit: http://www.php.net/unsub.php
| >
|
| -- 
| PHP General Mailing List (http://www.php.net/)
| To unsubscribe, visit: http://www.php.net/unsub.php
|
|

Mike sent me an email, and it seemed that he was satisfied with the script
that I made:

";
 }

 print "$i is to $j\n";

}

?>


Good idea to rather make an interface for this, Jim!

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php .htaccess autologin

2003-12-12 Thread Eric Bolikowski

"Justin Patrin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Jas wrote:
>
> > Combination of session vars and cookie vars...
> > example...
> > [login page]
> > sets cookie with auth=0 (variable)
> > sets session with auth=0 (variable)
> >
> > [logged in page(s)]
> > sets cookie with auth=1 (variable -client side)
> > sets session with auth=1 (variable -server side)
> > hash of users password as client side var
> >
> > then just write a function to look on the users machine for a cookie
> > from your site with auth=1, then if you see that present simply
> > authenticate the user.
> >
> > HTH
> > Jas
> >
> >
> > Evan Nemerson wrote:
> >
> >> On Thursday 11 December 2003 04:17 pm, ROBERT MCPEAK wrote:
> >>
> >>> I've dug around quite a bit and can't figure out how I might use PHP
to
> >>> handle an .htaccess login.  For example, if I wanted a script to log
> >>> in the
> >>> user, rather than the user logging in with the standard .htaccess
> >>> dialog.
> >>>
> >>> Any ideas?
> >>
> >>
> >>
> >> I could be wrong, but I think this would be rather client-dependent. I
> >> don't think HTTP remembers who you throughout a session- i think the
> >> headers get sent every time. My only idea from PHP would be to set the
> >> $_SERVER['PHP_AUTH_*'] stuff, but i sincerely doubt that would do
> >> anything. I just don't think there's a way  to ask the browser to set
> >> that info through http. Maybe ask @ javascript forum?
> >>
> >> If you find a solution, I'd love to hear it...
> >>
> >>
> >>> Since the .htaccess vars are stored in the browser, should I be
> >>> looking at
> >>> a PHP/JavaScritpt 1-2 punch?
> >>>
> >>> Thanks,
> >>>
> >>> Bob
> >>
> >>
> >>
>
> You could also use the PEAR::Auth package to do authentication (through
> a form or a .htaccess style popup).
>
> -- 
> paperCrane 

Hi Robert

I understood that you would like to do a login doing the HTTP AUTH method.
Here are some scripts:

Script 1: login:

To next file";

 }else{

  //if incorrect, resend headers
  header("WWW-Authenticate: Basic realm=\"Leksjon 11\"");
  header("HTTP/1.0 401 Unauthorized");
  exit;
 }

}

?>

Script 2: go_on.php :



I had not anymore time to write more comments, but i hope it was helpfull.

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: e-commerce with php

2003-12-14 Thread Eric Bolikowski

"Pehepe Php" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi! I don't know anything about e-commerce. I want to build a e-commerce
> site with php-mysql. So i have turorial for this idea. Can you help me
about
> it? i know php and mysql but i dont have any information about ssl,
> e-commerce, paying with credit card.
>
> thank you very much!
> you can send me online document as attachment. or you can send me an
adress
> or etc.
>
> _
> Help STOP SPAM with the new MSN 8 and get 2 months FREE*
> http://join.msn.com/?page=features/junkmail

Hi

You could have a look at osc2nuke:
http://www.osc2nuke.org/

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Inserting function into mail()???

2003-12-17 Thread Eric Bolikowski

"Tristan Pretty" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Ok, here's my code that I want to pick a random line from a text file, and
> then mail myself 10 times with a different line each time...
> But It simply won't work...
> Anyone know why?
>
>  function randomline($filename) {
> $file = file($filename);
> srand((double)microtime()*100);
> $abc = $file[rand(0,count($file))];
> }
> $i = 0;
> while (2 > $i) {
> $abc = randomline('text.txt');
> mail("[EMAIL PROTECTED]", "$abc", "$abc", "From: [EMAIL PROTECTED]");
> $i++;
> }
> ?>
>
> 
> 
> Mails sent!
> 
> 
>
>

The problem in your code is that your function does'nt have a return
statement.

That means that $abc will contain nothing after
$abc = randomline('text.txt');

Here is the code that will work:

 $i) {
$abc = randomline('text.txt');
mail("[EMAIL PROTECTED]", "$abc", "$abc", "From: [EMAIL PROTECTED]");
$i++;
}
?>



Mails sent!



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: fopen does not open URL-files

2003-12-18 Thread Eric Bolikowski

"Taras Panchenko" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have 2 questions:
> 1) why gethostbyname() does not resolve my host name into IP?
> 2) why fopen() (and file()) does not open an external (URL) file via http?
> Please, see my example below:
> --
>
http://www.management.kiev.ua/try-test/fopen-test-http.php -
> --
>  echo gethostbyname("www.management.kiev.ua");
>
> $h=fopen("http://www.management.kiev.ua/MO/main.php";, "r");
> echo fread($h,200);
> ?>
> - browser (interpreted) result ---
> www.management.kiev.ua
> Warning:  fopen() [ href='http://www.php.net/function.fopen'>function.fopen]:
> php_network_getaddresses: getaddrinfo failed: No address associated with
> hostname in /home/manageme/public_html/try-test/fopen-test-http.php
> on line 4
> 
> Warning:  fopen(http://www.management.kiev.ua/MO/main.php) [ href='http://www.php.net/function.fopen'>function.fopen]: failed to
> create stream: Permission denied in
> /home/manageme/public_html/try-test/fopen-test-http.php on line
> 4
> 
> Warning:  fread(): supplied argument is not a valid stream resource
> in /home/manageme/public_html/try-test/fopen-test-http.php on line
> 5
>  or as plain text --
> www.management.kiev.ua
> Warning: fopen() [function.fopen]: php_network_getaddresses: getaddrinfo
> failed: No address associated with hostname in
> /home/manageme/public_html/try-test/fopen-test-http.php on line 4
>
> Warning: fopen(http://www.management.kiev.ua/MO/main.php)
[function.fopen]:
> failed to create stream: Permission denied in
> /home/manageme/public_html/try-test/fopen-test-http.php on line 4
>
> Warning: fread(): supplied argument is not a valid stream resource in
> /home/manageme/public_html/try-test/fopen-test-http.php on line 5
> 
>
> Thanks a lot for help in advance,
> Taras V. Panchenko.

Try this rather(maybe it works):

http://www.management.kiev.ua/MO/main.php/";, "r");
 echo fread($fp,200);
?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Christmas

2003-12-19 Thread Eric Bolikowski
Merry christmas!!!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Christmas

2003-12-19 Thread Eric Bolikowski
Merry christmas to every PHP developer here!!!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Flash-PHP Socket Connection

2004-01-20 Thread Eric Bolikowski
Hi everybody

I'm working on a site that will be based on Flash, PHP and MySQL. PHP will
work as a middleware for Flash and MySQL.

My problem is communication between Flash and PHP.
I'm really out looking for using the socket functions in PHP and Flash to
make fast connection.

I have googled for almost an hour now, and I can't seem to find any
interesting. The only info I find, is about sending data between Flash and
PHP with HTTP GET or HTTP POST.

So if anybody has some general information on this or a link to a tutorial
on the subject, I would like to get those resources.

Thanks a lot

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Flash-PHP Socket Connection

2004-01-20 Thread Eric Bolikowski
Hi Donald

Can i get a link to that site?

I'm just a little bit confused about this thing about socket communication.

Why is there not any resources on using Flash XMLSocket() and PHP
fsockopen() ?

There should be some kind of resource on this.
I have recently searched all over Macromedia, not finding anything there...

Eric

"Donald Tyler" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> We use XMLRPC to communicate between flash & PHP. I presume it can be
> coupled with sockets if you should need a permanent connection as well.
>
> It has worked perfectly for pretty much anything we throw at it (It allows
> you to send any PHP or Action script native data type, e.g. arrays,
> Booleans, integers etc. back and forth across the web)
>
> Obvious security implications about, so be very very careful with what you
> do with the data received. Trust no one! Not even your own Flash Client.
>
> -Original Message-
> From: Eric Bolikowski [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, January 20, 2004 3:26 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Flash-PHP Socket Connection
>
> Hi everybody
>
> I'm working on a site that will be based on Flash, PHP and MySQL. PHP will
> work as a middleware for Flash and MySQL.
>
> My problem is communication between Flash and PHP.
> I'm really out looking for using the socket functions in PHP and Flash to
> make fast connection.
>
> I have googled for almost an hour now, and I can't seem to find any
> interesting. The only info I find, is about sending data between Flash and
> PHP with HTTP GET or HTTP POST.
>
> So if anybody has some general information on this or a link to a tutorial
> on the subject, I would like to get those resources.
>
> Thanks a lot
>
> Eric
>
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: inserting info from a query string into sql

2004-01-20 Thread Eric Bolikowski
It doesn't seem that you have declared the vars $reorder and $order, so that
will make a bad query.

"Mayo" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> PROBLEM
>
> I'm trying to insert information from a query string into sql.
>
> I have a table with content. The column headers have up and down arrows
> allowing the user to sort and order by that column.
>
> PHP
>
> I have default settings set for the variables.
> If I change the default values the SQL results changes. (good)
> I can get the query string variables outside the sql.
>
> 
>
> However I can't seem to insert the query string variables into the sql.
>
> 
> function whatever(){
>
> $username = "";
> ...
>
> // setting the default variables
>
> if(!isset($category)){$category="Something";}
> if(!isset($section)){$section="SomethingElse";}
>
> [EMAIL PROTECTED]($hostname,$username,$password);
> mysql_select_db($database);
> $selection = mysql_query("
> SELECT *
> FROM classes
> WHERE
> classCategory = '$category'
> ORDER BY $reorder $order
> ")
>
> ...
>
> ?>
>
> What am I missing here?
>
> thx,
>
> Gil

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Flash-PHP Socket Connection

2004-01-20 Thread Eric Bolikowski
Hey Ben

I know it may sound nuts, but I really want to make a socket connection
between a Flash and a PHP file.

Normally I would simply read in a text file/read XML/send data with GET or
POST, but I'm looking for a socket connections of following reasons:

1) I want a fast connection
2) I'm looking at this as a challenge, because it doesn't seem like anyone
else has done this before

Eric

"Ben Ramsey" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> What I mean is: you shouldn't need to use sockets to read in a file from
> Flash unless you're trying to do something more complicated, but from
> the way it sounds, you just want to pull data from MySQL with a PHP
> script and output it to Flash.  The PHP script could just echo plain
> text and Flash can read that in just fine without needing to connect via
> a socket.
> -Ben
>
> Ben Ramsey wrote:
>
> > Flash has the ability to read in text files, so you could use PHP to
> > output data in the correct format and use Flash to read the PHP script
> > like it reads a text file.  We did this in ASP once upon a time.
> >
> > Here's a tutorial about reading text files into Flash:
> > http://www.virtual-fx.net/tutorials/html/loadtextfile.htm
> >
> > Also, from what I understand, Flash now has a great XML parser, so you
> > could use PHP to generate XML and Flash could read in the XML as
> > variables.  You might want to look into that, but I think it's only
> > available in the newest version.
> >
> > -Ben
> >
> >
> > Eric Bolikowski wrote:
> >
> >> Hi everybody
> >>
> >> I'm working on a site that will be based on Flash, PHP and MySQL. PHP
> >> will
> >> work as a middleware for Flash and MySQL.
> >>
> >> My problem is communication between Flash and PHP.
> >> I'm really out looking for using the socket functions in PHP and Flash
to
> >> make fast connection.
> >>
> >> I have googled for almost an hour now, and I can't seem to find any
> >> interesting. The only info I find, is about sending data between Flash
> >> and
> >> PHP with HTTP GET or HTTP POST.
> >>
> >> So if anybody has some general information on this or a link to a
> >> tutorial
> >> on the subject, I would like to get those resources.
> >>
> >> Thanks a lot
> >>
> >> Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Odd Code Error.

2004-01-20 Thread Eric Bolikowski
Extremely odd what's happening here :s

I just doesn't make sense why the if condition should do this...

Maybe you could search in the PHP Manual for more info on this.

However, i did one thing that made that not work.

EA is Equal To NFH see $EA";
}else{
echo "EA is NOT EQUAL to NFH see $EA";
}
?>

Here I use the strict comparison operator, and it writes out the last
sentence.

Very odd this code

Eric

"Jonathan Pitcher" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am so frustrated at the moment with coding.  I had an odd error with
> some PHP coding.  And in the process I came across this error.
>
> Please try this out!! Because for me on my machine it does the first
> part of the if statement.  I can make a work around in my code to fix
> the error.  BUT I would rather know why this is evaluating incorrectly.
>
> 
> $EA = 0;
>
> if ($EA == "NFH")
> {
> echo "EA is Equal To NFH see $EA";
> }
> else
> {
> echo "EA is NOT EQUAL to NFH see $EA";
> }
> ?>
>
> Thanks in advance.
>
>
> Jonathan Pitcher

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Specifying file paths in Windows

2004-01-20 Thread Eric Bolikowski

"Todd Cary" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I moved an application from Linux to my Client's NT system and is_file
> cannot file the file on the NT system.  My directory structure is as
> follows:
>
> c:\webroot
>\application
>  \php_code
>\filedir
>
> The code is
>
//two dots!
> if (is_file("../filedir/test.txt")) echo "Found it!";
> else echo "Not found";
>
> This is working with Linux, but it does not work with NT.  Can someone
> tell me why it does not work?
>
> Todd

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: drop down list of years puzzles me

2004-01-20 Thread Eric Bolikowski
This should help:

".$y."\n";
}

?>

What you forgot is that $range must be the current year plus how many loops
you want.

Eric

"Bill Green" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> This works to create a drop down select box of numbers 1-12:
>
> for($i=1; $i < 13; $i++) {
> echo "".$i."\n";
> }
>
> This doesn't to create a drop down box of years:
>
> $curr_year = intval(date('Y'));
> $range = 10;
> for ($y=$curr_year; $y < $range; $y++) {
>  echo "".$y."\n";
> }
>
> When I check for errors:
> $curr_year = 2004
> $curr_year is an integer
> $range = 10
> $curr_year + $range = 2014
> $y = 2004
>
> But my select box is empty... as in:
> 
> 
>
> What is it that I don't understand?
>
> -- 
> Bill
> --

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Flash-PHP Socket Connection

2004-01-21 Thread Eric Bolikowski
Hi everybody helping me on this

I have not gotten a lot of tips, I appreciate all the help I have gotten
here.

I have decided to try out different technologies that I have been advised
and measure performance to choose the best and fastest one!

Eric

"Eric Bolikowski" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi everybody
>
> I'm working on a site that will be based on Flash, PHP and MySQL. PHP will
> work as a middleware for Flash and MySQL.
>
> My problem is communication between Flash and PHP.
> I'm really out looking for using the socket functions in PHP and Flash to
> make fast connection.
>
> I have googled for almost an hour now, and I can't seem to find any
> interesting. The only info I find, is about sending data between Flash and
> PHP with HTTP GET or HTTP POST.
>
> So if anybody has some general information on this or a link to a tutorial
> on the subject, I would like to get those resources.
>
> Thanks a lot
>
> Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: generating arrays using $_REQUEST/$_GET/$_POST

2004-01-22 Thread Eric Bolikowski
Hi Tristan

It seems wierd to me that $math would be an array even after that you have
named all your form fields to $math.

Well, what you can do otherwise that is a very known method is naming your
fields name[].

In your case this would be math[].

If you name many of your fields this way, $_GET['math'] will be an array
with auto-filled indexes.

Example:

---submit.html---


Number 1: 
Number 2: 
Number 3: 



---
Now let's say you enter 1 in field 1, 2 in field 2 and 3 in field 3.
Now let's send the data to receiver.php
---

---receiver.php---

 $value as $math){
echo "$key => $value";

?>
--

This would output:

1 => 1
2 => 2
3 => 3

---

This method can also be very useful with selects, naming the select "name[]"
Then you when you submit, name[] will become an array where the selected
indexes are given in the array.

Hope you found this helpful

Eric

"Tristan Gutsche" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello,
>
> I am having problems generating an array based on data passed from a form.
> The form has a series of fields with the same name "math". When submited
if
> i have register_globals=on i have no problems calling a $math variable and
> it spits out all the values assigned to math, however with
> register_globals=off only the last value passed in the HTTP string is
being
> returned.
>
> Any suggestions welcome.
>
> Regards
> Tristan

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: php and mysql help

2004-04-14 Thread Eric Bolikowski

"Webmaster" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Hello i need help with mysql_create_db i found the solution once but cant
remember what it was if someone could tell me the proper way to create a
database with php and mysql i would be greatly thankfull.
Thank you.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: C or C++

2004-04-19 Thread Eric Bolikowski

"Brent Clark" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Hi All

Just a quick question, is PHP written in C or C++.

Kind Regards
Brent Clark

It is written i C.
One hint is that PHP is procedural, and the same is C.
Maybe some beautieful day someone willl write a C++ version :)

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Performance of multidimensional arrays vs many variables

2004-01-28 Thread Eric Bolikowski
Hi John

If you have a large number of Users using this system, your save map for
sessions will grow in space, using some resources

If it's very large pieces of information, i would advise you to store this
info in a database. That's doomed to be more effective.

Eric

"John Schulz" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I'm planning to use a very large multidimensional array to store data
> for grouping quantities of Products.  This information needs to be
> carried from page to page in a session.  Here's a part of the array's
> hierarchy for an example:
>
> grouping (array)
> - owner => 'name'
> - message => 'text'
> - package (array)
> -- 1st package (array)
> --- box => $boxTypeID
> --- inspector => $employeeID
> --- contents (array)
>  $productID => $quantity
>
> So, for example, if I want to access the contents of the third package:
> $array_of_productIDs = $grouping['package'][3]['contents'];
>
> Great for organization, but seems prone to inefficiencies.  For
> example, I need to look though each Package for a Product ID to find
> how many of that Product that have been Packaged, compare that with the
> quantity of that Product ID in the work order, and display to the user
> the quantity that hasn't yet been packaged.
>
> I'm also concerned about the memory usage for such a deep array; would
> it take more memory than the same data broken up into many, simpler
> variables?
>
> I've thought of using simpler variables (e.g., $package1, $package2,
> $p1contents, etc.).  However, since there are many pieces of
> structurally-similar data (the Contents of a Package could have any
> number of Product IDs and and Quantities), and some elements have many
> pieces of related data (both a Box Type and Inspector for each
> Package), arrays seem to be the logical choice.
>
> Am I worrying about this too much?  ;-)  Are arrays the best solution
> for this sort of problem?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP EDITORS

2004-01-28 Thread Eric Bolikowski
The best editor is of course Zend Studio at www.zend.com, which I use.

The only bad thing is that it costs, but hovewer, you can download a free
trial to try it out.

But if you're able to spend some money, I would strongly recommend Zend
Studio. Feature List at
http://www.zend.com/store/products/zend-studio-demos.php

Eric

"John Jensen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello everyone. I am new to PhP and MySQL. I was wondering what a good (Or
> Free) Php Editor is?
>
> -- 
>
>
> **
> John Jensen KB9KQN Woodstock, IL
> Wxwarn1 - http://www.wxwarn1.com
> Personal Page - http://john.wxwarn1.com
> Scannerbuff.net - http://www.scannerbuff.net
> "My Mind Works Like Lightning One Brilliant Flash and It's Gone"
> **

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Zend Studio ESC key issue?

2004-01-29 Thread Eric Bolikowski
Hei Trevor

I have got exactly the same problem, and there doesn't seem to be any
solution to it...

What you could to, is to send a mail to Zend and ask them to implement a
feature that will allow us Zend Studio users to customize this.

Eric

"Trevor Gryffyn" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
First, let me apologize for this not being a specific PHP question, but
I can't find the answer and I'm hoping someone else here has run into
this.  Maybe I'm just blind, blond or stupid today. :)

In Zend Studio (Zend Development Environment) for Windows (on Windows
2000 fyi), when I hit the ESC key, it hides my "Messages", "Debug" and
"Output" windows.  This might be nice sometimes, but I find myself
hitting ESC (sometimes for no rational reason) and it's driving me nuts
that it hides the three windows I WANT to see and not the "File Manager"
window, which I really don't use that much currently. Hah

Is there somewhere to customize this or is there another key that brings
them back quickly?   I prefer keyboard use to mouse use and would prefer
not to have these windows disappear in the first place, but if it were a
matter of hitting ESC to temporarily hide and hitting ESC again to bring
them back, that'd be acceptable.


I promise to post more directly PHP related messages later, just gotta
take care of this one project first.

Thanks in advance!

-Trevor Gryffyn

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Check to remove file that are older than 1 week

2004-02-05 Thread Eric Bolikowski
Hi

Here's a little function I made up for this:

 $time_limit){
 unlink($file);
}
   }
  }
  closedir($df);
 }
}

delete_old_files('.');

?>

Hope that's what you need.

Eric


"Yc Nyon" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> I want to delete files than are older than 1 week from a specific
directory.
> Anyone mind to share their code? Can't anything on phpbuilder on this.
>
> Regards
> Nyon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] php-general list question - [Fwd: Delivery Report (failure) forphp-general@lists.php.net]

2004-02-06 Thread Eric Bolikowski
Exactly the same thing's happening to me!

"Luke" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Me too, and im using the newsgroup, not even the mailing list!! :/

-- 
Luke
  "Craig" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]

  > I get one of these for almost every message I send, usually
  > with a delay
  > of a few days and always the same error.  I see my posts come from the
  > list to me and I see people replying to my messages so the
  > list seems to
  > be processing my posts.  It's annoying however to keep getting these.
  > Anybody else getting this?
  >

  Yeah, I am getting bundles of these as well...

  -Craig

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: include_once() isnt!

2004-02-07 Thread Eric Bolikowski

"Rob" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Ive programmed with C/C++ for years and have recently started to dabble in
> PHP. Ive written a multi-part script for a friend and Ive run into a
> problem.
>
> Ive got 14 include files 3 of which are basic components that may or may
not
> be used by other components. One is an authorisation class, another is a
> Dbase clas (For MySQL) and another is a file system component.
>
> Now heres the problem. My authorisation component uses the DBase
component.
> Some of my other components use the DBase component only some of the time
> and the Auth and DBase components some of the time and the Auth component
> some of the time.  SO... In the Auth component ive included (via
> include_once()) the DB component, because it needs it. NOW... in other
> modules Ive included (via include_once()) the auth, DB, and gallery
> components.
> Heres where the problem lies. Each component is in a separate file, and
when
> I run the script, I get an arror saying I cant re-define the classes.
> Which makes me believe that the include_once() function is trying to
include
> the other components even though they are already included. So, does that
> mean that include_once() only works right when it is used in the same
file?
> It wont recognise that an include was already included in another include?
> Have I confused you yet? I am.

There may be a problem with include_once, something about where it's placed
and so on...

But anyway I would advise you to not generally rely on include_once() or
require_once().
These are just meant to protect you from making an error, but you should
check to see that you don't use include_once() on the same file many times.
It's bad practice to include one file several times.

One tip i would give you, is to set up one file, something like
"define_classes.inc.php", which is responsable for including the classes and
defining them.
In this way you can just include define_classes.inc.php in the scripts where
you need classes, and your work will be a lot more structured.

I personally use this system on my web-site, and it does that i don't have
to be worried about if I am getting the correct classes, because I get them
all through define_classes.inc.php

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: mysql functions

2004-02-10 Thread Eric Bolikowski
Would advise mysql_fetch_row()

"Angelo Zanetti" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have a query which returns only 1 row, which of the following would be
the
> best to get the value from the resultset:
>
> mysql_result()
> mysql_fetch_field()
> mysql_fetch_row()
>
> the resultset only returns 1 column, so basically its only 1 field i get
> from the resultset.
>
> thanx in advance.
> angelo
>
> 
> Disclaimer
> This e-mail transmission contains confidential information,
> which is the property of the sender.
> The information in this e-mail or attachments thereto is
> intended for the attention and use only of the addressee.
> Should you have received this e-mail in error, please delete
> and destroy it and any attachments thereto immediately.
> Under no circumstances will the Cape Technikon or the sender
> of this e-mail be liable to any party for any direct, indirect,
> special or other consequential damages for any use of this e-mail.
> For the detailed e-mail disclaimer please refer to
> http://www.ctech.ac.za/polic or call +27 (0)21 460 3911

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Zero Sized Reply

2004-02-10 Thread Eric Bolikowski
Some source code would help

"Deependra B. Tandukar" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Dear all,
>
> The script was working perfectly, but all of the sudden since last week
> stopped working, gives Zero Sized Reply. The site is
> http://coremag.net/corex/feedback/feedback.htm
>
> Can anybody tell me what is the problem. Below is the page I get when
> submit the form:
>
> ERROR
> The requested URL could not be retrieved
>
> While trying to retrieve the URL:
> http://coremag.net/corex/feedback/feedback.php
>
> The following error was encountered:
> Zero Sized Reply
>
> Squid did not receive any data for this request.
>
> Your cache administrator is webmaster.
>
> Generated Tue, 10 Feb 2004 06:05:32 GMT by cache3.mos.com.np
> (squid/2.5.STABLE3)
>
> Regards,
> DT

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Linked Table Structure

2004-02-10 Thread Eric Bolikowski
"Sajid" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> HI,
>
> I have a problem.
>
> I dont know how to create tables for this in PHPMYADMIN, the situation is
> like this:
>
> I have to display lot of items on the screen.
>
> There are three Datagrids on the screen (I am using Flash for this so if i
> get the database structure right, i will be able to take care of the rest
of
> the scripting to returning data from database.).
>
> Lets say the three DataGrids are called:
>
> DG1, DG2 and DG3
>
> DG1 displays the list of CONTINENTS like (Norht America, Asia, South
> America, Australia etc.)
>
> If you click any region in DG1, DG2 gets populated with list of countries
> (like USA, Canada, Mexico... etc.)
>
> At the same time, when i have clicked a CONTINENT in DG1, an image of the
> CONTINENT is displayed on the screen.
>
> Now, If i click on any Country in DG2, DG3 is getting populated with a ist
> of Clubs (like Club1, Club2, Club3 etc.)
>
> At the same time, An image of the country and a description of the country
> are displayed on the screen.
>
> again, if i click on any CLUB, it displays a Image, description and URL of
> the CLUB.
>
> I dont know what the DATABASE STRUCTURE shold look like for this. I know
> there has to be some kind of LINKING between the tables but i dont know
> HOW. :(
>
> I have been trying few things but without any success :(
>
> ---
> The DG1 field will be:
> Continent_Name | Continent_Image | Continent_Text
>
> The DG2 fields will be:
> Country_Name | Country_Image | Country_Text
>
> The DG3 fields will be:
> Club_Name | Club_Image | Club_Text | Club_Url
> ---
>
> Can anyone show me the Sql for such a table structure?

Hi Sajid

It seems like the Country in some manner has to be a undercategory for the
continent, and the club a undercategory for the Country.

A way you could do this, is to set up the tables like this:

DG1:
Continent_Id | Continent_Name | Continent_Image | Continent_Text

DG2: Country_Id | Continent_Id | Country_Name | Country_Image | Country_Text

DG3: Club_Id | Country_Id | Club_Name | Club_Image | Club_Text | Club_Url

The id fields should be datatype INT, name and Url something like
varchar(100), the text tinytext, and the images BLOB.

What you could do is when the user first comes you run this query: "SELECT
Continent_Id, Continent_Name FROM DG1". If you want to grab the text too you
could just add Continent_Text in the query. To get the image, I would
recommend some kind of file that gets the Content_Id and, gets the image,
and prints it out.
Now, when you display all of your continents(up to you), you should make
them a link to the same file, but now giving a Continent_Id to the the file.
Now, let's simulate someone clicked Europa, and that has a Continent_Id of
4.
Then we go to the following file: foo.php?op=continent&id=4.

Here we can run this query: "SELECT Continent_Name, Country_Id, Country_Name
FROM DG2 WHERE Continent_Id = {$_GET['id']}".
What we simply get here, is all the countries that are in the continent
Europa, with the id 4 in DG1.

Now we get the list, and you display that too.
What you can do now, is too display links to the next step: showing the
clubs.

Let's say we want to take a look at France, and that country has 9 as a
Country_Id.
Now let's say we're at the following file: foo.php?op=clubs&id=9

Now we can run the following query: "SELECT Club_Id, Club_Name, Club_Url
FROM DG3 WHERE Country_Id = {$_GET['id']}".
Here we get all the clubs in France.

I hope this was something helpful.
Would be glad too demonstrate how to get the Country name and the Continent
name while showing the club, but i think you're albe to sort this out now!

Eric



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: reading remote page content

2004-02-10 Thread Eric Bolikowski
"Hamid Hossain" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I wants to read some pages throug http call. Then, I am going to parse the
> returned string and do some process.
>
> For example: I want to get the latest news from CNN.com daily. So, I want
to
> call http://www.cnn.com and retrieve CNN's homepage content in a variable
as
> a string. After that, I will apply some RegExp to extract what I want.
>
>
> Regards,
> Hamid Hossain
>
> ---
> Check Amazon.com Latest PHP books:
>
http://www.amazon.com/exec/obidos/redirect?tag=zawraqclassif-20&path=tg/browse/-/295223
>
> Start Accepting CreditCard at your site in minutes:
> http://www.2checkout.com/cgi-bin/aff.2c?affid=106720
>
> Download Alexa Tool Bar to stop Pop-ups for FREE:
> http://download.alexa.com/?amzn_id=zawraqclassif-20
>
> Download Ready-Made Templates for your site:
> http://www.aplustemplates.com/cgi/affiliates/c1.cgi/zawraq_ad
>
>

http://www.cnn.com/', 'r');
while($cnn .= fread($fp, 100));
fclose($fp);

print $cnn;

?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: weird header() (bug may be)

2004-02-11 Thread Eric Bolikowski
Headers have to be pretty accurate, or it will cause trouble.
And your redirect header is not quite correct.
It should be this:
header("Location: another_page.php");
and NOT header("Location:another_page.php");

What you need here is a space between "Location:" and the URL.

"Adwinwijaya" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello php-generaler's ,
>
>   I have a script like this :
>
>   if($foo == 'something'){
>   header('Location:to_another_page.php') ;
>   }else
>   {
>do another thing in here
>   }
>
>   header('Location:to_previous_page.php');
>
>
>   I got a problem ... when $foo == 'something' .. it wont redirect me
>   to to_another_page.php  but if I put die(); after calling
>   header(); .. it will work ...
>
>   is this the bug ?
>
>   I use php 4.3.4 ... and Apache 2.x
>
>   thanks
>
>
> -- 
> Best regards,
>  adwinwijaya  mailto:[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Problem - Running PHP with different groups (Safe hosting enviroment)

2004-11-01 Thread Eric Bolikowski
Dear PHP-list,

Me and a small group of developers are thinking about making a Norwegian
free hosting service.
This service features PHP, MySQL and a lot of different services.

Everything we have sat up is ready - Cpanel handles making the most. When a
user is registered, we call by HTTP the Cpanel admin panel, setting up a
subdomain, making a FTP Account, making a mail adresses and making a folder.
All this works fine - but there is one serious hinch.
How are we supposed to stop people from including each others files???
We have a structure somewhat similiar to this one:
/home/cu/[USER_ACCOUNT]/.
Then, a script in /home/cu/test1/, is fully capable of doing file operations
with the f* functions at /home/cu/test2, and has practically full access.

We know how to make a group, and making a user for that particular group.
Now what we think we're supposed to do, is that the folder made when
registrered, is "owned" by this usergroup, and the chmod rights are set to
group read, write and execute, and nothing else.

But how are we supposed to make a folder being owned by a group, and how can
we run php so that it will run under a special group and not being able to
open other folders?

We know a little about UNIX, but not that much. That's our problem.

Would be really happy if anyone could help us out!

Eric Bolikowski

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: GUI editor for php?

2004-11-01 Thread Eric Bolikowski


"Andy B" <[EMAIL PROTECTED]> skrev i melding
news:[EMAIL PROTECTED]
> Hi.
>
> Is there any GUI editors out there for php? if so does anybody know of a
> good one that doesnt cost a ton of money??

There's a trial for Zend Studio at www.zend.com

Eric

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php