RE: [PHP] hotel reservation system.

2006-09-30 Thread PHP Email List
I like the pick up the phone part my self, the internet is so overrated! :) Big D ::Favorite Quote:: [[Your born stupid.Some people just don't like change!]] Author: Yours Truly :) -Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 7:

RE: [PHP] Class Help Extended

2004-05-06 Thread PHP Email List
-Original Message- > From: Curt Zirzow [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 06, 2004 2:13 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Class Help Extended > > > * Thus wrote Rob Adams ([EMAIL PROTECTED]): > > > > "Php Email List"

RE: [PHP] Class Help Extended

2004-05-06 Thread PHP Email List
> More often than not it's a good thing to assign 'default' values to > class variables like that. > > In this case though I've observed that common practice is to get the > user/pass values from a config file and pass them along as variables > when creating an instance of the class. > > Classes ar

[PHP] Class Help Extended

2004-05-05 Thread PHP Email List
First off thanks Curt for the attempt at explaining what the purpose was for those, I'm convinced enough to start doing that since that's what the "pros" use. :) However, I know have another concern. As for as class security. Is it wrong to initialize the static variables for my database assignmen

[PHP] Class Help

2004-05-05 Thread PHP Email List
Why is it in a class, so important for you to initialize your $variables? In the following example, I have my class started and then took out or atleast commented my "var $variable" and the code still does what it should. So why is it so important that you initialize these variables this way? [::

RE: [PHP] protecting web page

2004-05-05 Thread PHP Email List
> Do you know any solution that can help me. I've find an application named > HTML guard but it only work for static html pages. I need more a class or > function to prevent for printing. Disclaimer:: To my knowledge! :) The only thing off hand that I can think of that would prevent printing is a

RE: [PHP] Script never returns from funktion.

2004-05-01 Thread PHP Email List
> Subject: [PHP] Script never returns from funktion. > Hi , i am having problems with a funktion call never returns from the > funktion. Now I'm still new to PHP so bare with me if this is wrong. But don't you have to assign the "authenticate()" function to something as your returning the $user

RE: [PHP] Bookmark server

2004-04-18 Thread PHP Email List
> I am planning on writing a "bookmark server" in php. The idea is I will > have a database that stores all my internet favorites on a web server > some where, so if I am doing some web browsing away from home and find a > site I want to save, I can go to my bookmark server and save the url > ther

RE: [PHP] Double mails

2004-04-16 Thread PHP Email List
Sorry this was meant for Kaleb, My bad, see WAY TOO EARLY IN THE MORNING > -Original Message- > From: PHP Email List [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 17, 2004 12:04 AM > To: Chris W. Parker > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] Double mails &

RE: [PHP] Double mails

2004-04-16 Thread PHP Email List
> From: Chris W. Parker [mailto:[EMAIL PROTECTED] > [EMAIL PROTECTED] > Subject: RE: [PHP] Double mails > > Every mail comes twice... Well, every mail from the list. I had this happen a year ago on a Wolf Conservation List that I belong too, I contacted the email administrator and they checked the

RE: [PHP] PHP e-commerce questions

2004-04-10 Thread PHP Email List
> From: Matt Hedges [mailto:[EMAIL PROTECTED] > Subject: [PHP] PHP e-commerce questions > Hello. Hi! > I have built a site where people can register their weddings. I use > MySQL/PHP to handle the database. I wish to add a step where people must > pay to enter their information into the databas

RE: [PHP] smarty

2004-04-08 Thread PHP Email List
> From: Antonio Montana [mailto:[EMAIL PROTECTED] > Subject: Re: [PHP] smarty > "Who the fuck you tink you're talkin' to, huh! Tink? DRINKS ARE ON THE HOUSE!! LOL > You dont tell me what to do, Sosa. Sammy Sosa? > You want a war, you got it. Untraceable IP address - $145.00 Unbreakable Firewa

RE: [PHP] Wrong IP address

2004-03-29 Thread PHP Email List
> From: ascll [mailto:[EMAIL PROTECTED] > Subject: [PHP] Wrong IP address > > to get the web IP address for my machine once my PC is connected to > Internet.. Are you on a highspeed connection or dialup. Dial up connections tend to give a different connection with every connection. Also if you us

RE: [PHP] Methods for creating HTML with PHP

2004-03-26 Thread PHP Email List
> -Original Message- > From: Jason Giangrande [mailto:[EMAIL PROTECTED] > I'm looking for an easy way to write all my HTML using PHP. Jason, Sorry this is late and not even sure if you found your answer to this question that you ask, however I think in the end it's going to be up to you

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
> -Original Message- > From: Rick Fletcher [mailto:[EMAIL PROTECTED] > > If your script has the same "==" where a plain ol' "=" should be, that'd > account for the replacement being empty (since it's replaced with > $na, which > wasn't assigned). Well your correct, that put me to ease some

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
> -Original Message- > From: Brent Baisley [mailto:[EMAIL PROTECTED] > What is > interchangeable is $_REQUEST with $_POST or $_GET. You may try using > $_REQUEST just for testing. If it works, then you could use $_REQUEST > since it will work with GET or POST variables. Although that's not

RE: [PHP] $_POST not working with str_replace

2004-03-24 Thread PHP Email List
> -Original Message- > From: Brent Baisley [mailto:[EMAIL PROTECTED] > A technicality, but GET/POST are not interchangeable, it depends on the > method declared in your form. I'm sure you meant they were > interchangeable if you changed your form method. Right I had mentioned that... (al

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
> -Original Message- > From: John W. Holmes [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 23, 2004 7:59 PM > > Like someone else said, you need to whittle your code down to a minimum > and do a lot of variable checking along the way. Slowly add code back > until you find what's causing

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
what happens if you do the following? >", $name, $output); ?> ?? I tried that, but I know I can get the values from the $_POST array as per John's email about using print_r($_POST) to see what was showing. And yes I get the value I wanted in between the :: ::. Thanks for trying though, Anyone

RE: [PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
PHP Email List wrote: > Ok here's my problem, I'm in the midst of creating a string replace to work > on a rtf file that is on the server, this fuctionallity works perfect with > "GET" but not "POST", I guess I don't understand why. [snip] > $name =

[PHP] $_POST not working with str_replace

2004-03-23 Thread PHP Email List
Hey gang, Ok here's my problem, I'm in the midst of creating a string replace to work on a rtf file that is on the server, this fuctionallity works perfect with "GET" but not "POST", I guess I don't understand why. The reason I don't want to use GET over POST is due to the character restrictions.

RE: [PHP] E-Commerce

2004-02-12 Thread PHP Email List
Jimmy jimmy jimmy... Now if your question is, Can PHP be the most versatile languge that one should use for creating the best online shop ever? Then yes. Can PHP interact with MySql and just about every other Database program to store all your wonderful merchandise, in a nice compact easy to car

RE: [PHP] Revised: RE: [PHP] Re: Can I do this?

2004-02-08 Thread PHP Email List
MAIL PROTECTED] Sent: Sunday, February 08, 2004 11:49 AM To: Andrew Séguin Cc: PHP Email List; [EMAIL PROTECTED] Subject: Re: [PHP] Revised: RE: [PHP] Re: Can I do this? On Sun, 2004-02-08 at 08:27, Andrew Séguin wrote: > A test to confirm that, is to point the browser to the address being &g

[PHP] Revised: RE: [PHP] Re: Can I do this?

2004-02-08 Thread PHP Email List
Ok so on this topic, I do something similar to this with my scripts, and if my includes are vulnerable... I need to know how? I have tested this and the includes parse the information as it includes it, I can't see the code, so how is this possible where you say: { "If someone were to stu

RE: [PHP] How do you guys do this?

2004-01-30 Thread PHP Email List
* Unless more than one person is uploading a picture within the same second you won't have any problems with duplicate names. I sure hope that there aren't 2 people uploading breadbox.jpg at the same second. That'd be too weird! Now maybe if it was a porn site I could see the same name, tina.jpg,

RE: [PHP] picturing webpage

2004-01-11 Thread PHP Email List
Not sure that you wanted to know this or if this was mentioned already as I'm just now going through my 13,000+ emails from this list, but this isn't done dynamically. I'm betting that this Alexa company gets the urls that are posted for viewing and then goes out to grab the site's pictures manuall